Skip to content
This repository was archived by the owner on Jun 5, 2020. It is now read-only.

Commit fa452d2

Browse files
committed
Fixing Writing the result of evaluated expressions example
In the current example "Writing the result of evaluated expressions" for "VERSIONS", the example is missing a single quote at the end of the line. This is causing an error when that line is evaluated. SyntaxError: Unexpected token ILLEGAL at Preprocessor.evaluate (/usr/local/lib/node_modules/preprocessor/Preprocessor.js:170:25)
1 parent ceeb264 commit fa452d2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Directives
4949
* Writing the result of evaluated expressions:
5050

5151
```javascript
52-
var version = // #put '"'+VERSION+'";"
52+
var version = // #put '"'+VERSION+'";"'
5353
var str = // #put "\"Hello world!\";"
5454
var onePlusOne = // #put (1+1)+";"
5555
```

0 commit comments

Comments
 (0)