summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorBilly Shih <me@billyshih.com>2013-08-19 15:19:48 -0700
committerBilly Shih <me@billyshih.com>2013-08-19 15:19:48 -0700
commitcf90a62a7a21f93971bbf71e4d2188bbf97ab21e (patch)
tree1bd72fd568998a905b4185554e2816905449be78
parentf33dea8b83bf64ecde36337a5e02cae77f5210de (diff)
Fixed a grammatical error
-rw-r--r--javascript.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/javascript.html.markdown b/javascript.html.markdown
index fb79949e..1dd6e2be 100644
--- a/javascript.html.markdown
+++ b/javascript.html.markdown
@@ -342,7 +342,7 @@ myPrototype.meaningOfLife = 43;
myObj.meaningOfLife; // = 43
// We mentioned that __proto__ was non-standard, and there's no standard way to
-// change the prototype of an existing object. However, there's two ways to
+// change the prototype of an existing object. However, there are two ways to
// create a new object with a given prototype.
// The first is Object.create, which is a recent addition to JS, and therefore