Skip to content

Commit b960bfd

Browse files
committed
Fix backticks
1 parent ad92dce commit b960bfd

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docs/language.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ See also [issue #51](https://github.com/Microsoft/pxt/issues/51).
5151
* all arithmetic operators (including bitwise operators); note that in microcontroller targets
5252
all arithmetic is performed on integers, also when simulating in the browser
5353
* strings (with a few common methods)
54-
* [string templates](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals) (```x is ${x}```)
54+
* [string templates](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals) (`` `x is ${x}` ``)
5555
* arrow functions `() => ...`
5656
* classes with fields, methods and constructors; `new` keyword
5757
* array literals `[1, 2, 3]`
@@ -84,7 +84,7 @@ unlikely to miss it):
8484
* `yield` expression and ``function*``
8585
* `await` expression and `async function`
8686
* `typeof` expression
87-
* tagged templates ``tag `text ${expression} more text```; regular templates are supported
87+
* tagged templates ``tag `text ${expression} more text` ``; regular templates are supported
8888
* binding with arrays or objects: `let [a, b] = ...; let { x, y } = ...`
8989
* `with` statement
9090
* `eval`

0 commit comments

Comments
 (0)