Merge pull request from bbshih/patch-1

Fixed a grammatical error
This commit is contained in:
Adam Bard 2013-08-20 08:50:11 -07:00
commit 3ceee98134

View File

@ -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