diff --git a/CodingConvention.md b/CodingConvention.md index 892261f84..e0df902a2 100644 --- a/CodingConvention.md +++ b/CodingConvention.md @@ -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