summaryrefslogtreecommitdiffstats
path: root/STYLE-GUIDE.md
diff options
context:
space:
mode:
authorwillstacey <wstacey.physics@gmail.com>2015-08-27 11:26:38 -0700
committerwillstacey <wstacey.physics@gmail.com>2015-08-27 11:26:38 -0700
commitb0dcb50c75de0b12fb004f6f5bb94787f73eb530 (patch)
treeedcfea36ad3d3473f5209a311f2730df8c0b7512 /STYLE-GUIDE.md
parentbc171ba7c9d40f49c4c5a9686822d62b785a8c50 (diff)
downloadchat-b0dcb50c75de0b12fb004f6f5bb94787f73eb530.tar.gz
chat-b0dcb50c75de0b12fb004f6f5bb94787f73eb530.tar.bz2
chat-b0dcb50c75de0b12fb004f6f5bb94787f73eb530.zip
Spelling error
somthing -> something
Diffstat (limited to 'STYLE-GUIDE.md')
-rw-r--r--STYLE-GUIDE.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/STYLE-GUIDE.md b/STYLE-GUIDE.md
index 0da0a14f8..06ae363d3 100644
--- a/STYLE-GUIDE.md
+++ b/STYLE-GUIDE.md
@@ -85,14 +85,14 @@ var my_variable = 4;
```javascript
// Correct
-if (somthing) {
+if (something) {
stuff...;
} else if (otherthing) {
stuff...;
}
// Incorrect
-if (somthing)
+if (something)
{
stuff...;
}
@@ -102,8 +102,8 @@ else
}
// Incorrect
-if (somthing) stuff...;
-if (somthing)
+if (something) stuff...;
+if (something)
stuff...;
```