summaryrefslogtreecommitdiffhomepage
path: root/javascript.html.markdown
diff options
context:
space:
mode:
authorJustin Donaldson <jdonaldson@gmail.com>2013-08-20 21:28:22 -0700
committerJustin Donaldson <jdonaldson@gmail.com>2013-08-20 21:28:22 -0700
commit9d10f87cf8a48241aed9bc54ad6c9fe1142faa35 (patch)
treef9814b727000543dbfb00d581e3f11eec43e96c3 /javascript.html.markdown
parent12bbb737f6417cb39a1f5ef3cf5d50f1bccc34a4 (diff)
parent598fe61e1a9968eb633d97ef214b01c7d3f0d942 (diff)
Merge remote-tracking branch 'adam/master'
Diffstat (limited to 'javascript.html.markdown')
-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