diff options
author | Geoff Liu <cangming.liu@gmail.com> | 2015-03-07 23:17:49 -0700 |
---|---|---|
committer | Geoff Liu <cangming.liu@gmail.com> | 2015-03-07 23:17:49 -0700 |
commit | bb8342ca4cdf1ba294034d2ab1291ad171b273de (patch) | |
tree | d6cc200248f71c0fa70cb98be0f5cebe9ba98aad /javascript.html.markdown | |
parent | fedf97e1054d18ce86d15facd89d5671979198fa (diff) | |
parent | bcc7428194d68047f7baffbe40d0adb3d9b2b3aa (diff) |
Merge pull request #988 from jasonqu/master
[javascript/zh] Translation tracking
Diffstat (limited to 'javascript.html.markdown')
-rw-r--r-- | javascript.html.markdown | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/javascript.html.markdown b/javascript.html.markdown index 95808d05..588ea86d 100644 --- a/javascript.html.markdown +++ b/javascript.html.markdown @@ -407,7 +407,7 @@ myNewObj.myNumber; // = 5 // look at its prototype. // Some JS implementations let you access an object's prototype on the magic -// property __proto__. While this is useful for explaining prototypes it's not +// property `__proto__`. While this is useful for explaining prototypes it's not // part of the standard; we'll get to standard ways of using prototypes later. var myObj = { myString: "Hello world!" @@ -438,7 +438,7 @@ myObj.myBoolean; // = true myPrototype.meaningOfLife = 43; myObj.meaningOfLife; // = 43 -// We mentioned that __proto__ was non-standard, and there's no standard way to +// We mentioned that `__proto__` was non-standard, and there's no standard way to // change the prototype of an existing object. However, there are two ways to // create a new object with a given prototype. |