diff options
author | Adam Bard <github@adambard.com> | 2013-08-20 08:50:11 -0700 |
---|---|---|
committer | Adam Bard <github@adambard.com> | 2013-08-20 08:50:11 -0700 |
commit | 3ceee981342fba732c01164e84142196e9018f72 (patch) | |
tree | 5fa8cd1e8bf229393727de9a882f3ceef0526fc2 /javascript.html.markdown | |
parent | 3b25d0f0deafa130bccfd6f5ea20fb4fcd61e406 (diff) | |
parent | cf90a62a7a21f93971bbf71e4d2188bbf97ab21e (diff) |
Merge pull request #261 from bbshih/patch-1
Fixed a grammatical error
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 |