Skip to content

Commit 6a7adbf

Browse files
committed
Fix wrong example of Quotes usage
1 parent 29e07dd commit 6a7adbf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

CodingConvention.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,13 @@ Use single quotes, unless you are writing JSON.
5555
*Right:*
5656

5757
~~~ {.javascript}
58-
var foo = "bar";
58+
var foo = 'bar';
5959
~~~
6060

6161
*Wrong:*
6262

6363
~~~ {.javascript}
64-
var foo = 'bar';
64+
var foo = "bar";
6565
~~~
6666

6767
## Braces

0 commit comments

Comments
 (0)