Skip to content

Commit 8bb1e4c

Browse files
committed
fix: quote typo
It says single quote in the comment, so the example should be single quote
1 parent 8dd53d7 commit 8bb1e4c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

en/strings/create.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Strings can be defined by enclosing the text in single quotes or double quotes:
88

99
```javascript
1010
// Single quotes can be used
11-
let str = "Our lovely string";
11+
let str = 'Our lovely string';
1212

1313
// Double quotes as well
1414
let otherStr = "Another nice string";

0 commit comments

Comments
 (0)