diff options
author | Justin Donaldson <jdonaldson@gmail.com> | 2013-08-20 21:28:22 -0700 |
---|---|---|
committer | Justin Donaldson <jdonaldson@gmail.com> | 2013-08-20 21:28:22 -0700 |
commit | 9d10f87cf8a48241aed9bc54ad6c9fe1142faa35 (patch) | |
tree | f9814b727000543dbfb00d581e3f11eec43e96c3 /javascript.html.markdown | |
parent | 12bbb737f6417cb39a1f5ef3cf5d50f1bccc34a4 (diff) | |
parent | 598fe61e1a9968eb633d97ef214b01c7d3f0d942 (diff) |
Merge remote-tracking branch 'adam/master'
Diffstat (limited to 'javascript.html.markdown')
-rw-r--r-- | javascript.html.markdown | 2 |
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 |