Merge pull request #503 from willstacey/patch-1

Spelling error
Этот коммит содержится в:
Corey Hulen
2015-08-27 11:45:50 -07:00
родитель 6632f9229d b0dcb50c75
Коммит 1d23d9db60

Просмотреть файл

@@ -85,14 +85,14 @@ var my_variable = 4;
```javascript ```javascript
// Correct // Correct
if (somthing) { if (something) {
stuff...; stuff...;
} else if (otherthing) { } else if (otherthing) {
stuff...; stuff...;
} }
// Incorrect // Incorrect
if (somthing) if (something)
{ {
stuff...; stuff...;
} }
@@ -102,8 +102,8 @@ else
} }
// Incorrect // Incorrect
if (somthing) stuff...; if (something) stuff...;
if (somthing) if (something)
stuff...; stuff...;
``` ```