summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAriel <arikrak@gmail.com>2014-03-10 18:08:50 -0400
committerAriel <arikrak@gmail.com>2014-03-10 18:08:50 -0400
commit6348a3adde95e72334bf8bfd1ca95079862c1c0b (patch)
treee8f93999beb25818abd0d034a7246a7c100ae0d0
parent0590851a648b7afbc1fd8df332307688b9784a84 (diff)
space
-rw-r--r--javascript.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/javascript.html.markdown b/javascript.html.markdown
index 03a12372..76017c17 100644
--- a/javascript.html.markdown
+++ b/javascript.html.markdown
@@ -106,7 +106,7 @@ false;
// You can access characters in a string with charAt
"This is a string".charAt(0); // = 'T'
-//...or use substring to get larger pieces
+// ...or use substring to get larger pieces
"Hello world".substring(0, 5); // = "Hello"
// length is a property, so don't use ()