Fix wrong example of Quotes usage

This commit is contained in:
Emil Tabakov
2017-03-29 18:33:10 +03:00
parent 29e07dd027
commit 6a7adbf43b

View File

@ -55,13 +55,13 @@ Use single quotes, unless you are writing JSON.
*Right:*
~~~ {.javascript}
var foo = "bar";
var foo = 'bar';
~~~
*Wrong:*
~~~ {.javascript}
var foo = 'bar';
var foo = "bar";
~~~
## Braces