summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAdam Bard <github@adambard.com>2013-08-20 08:50:11 -0700
committerAdam Bard <github@adambard.com>2013-08-20 08:50:11 -0700
commit3ceee981342fba732c01164e84142196e9018f72 (patch)
tree5fa8cd1e8bf229393727de9a882f3ceef0526fc2
parent3b25d0f0deafa130bccfd6f5ea20fb4fcd61e406 (diff)
parentcf90a62a7a21f93971bbf71e4d2188bbf97ab21e (diff)
Merge pull request #261 from bbshih/patch-1
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