mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-15 11:01:21 +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:*
|
*Right:*
|
||||||
|
|
||||||
~~~ {.javascript}
|
~~~ {.javascript}
|
||||||
var foo = "bar";
|
var foo = 'bar';
|
||||||
~~~
|
~~~
|
||||||
|
|
||||||
*Wrong:*
|
*Wrong:*
|
||||||
|
|
||||||
~~~ {.javascript}
|
~~~ {.javascript}
|
||||||
var foo = 'bar';
|
var foo = "bar";
|
||||||
~~~
|
~~~
|
||||||
|
|
||||||
## Braces
|
## Braces
|
||||||
|
Reference in New Issue
Block a user