mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-15 19:26:42 +08:00
Fix wrong example of Quotes usage
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user