diff options
author | bharathkkb <bharathkkb@pixelblenders.com> | 2015-10-16 11:41:52 -0700 |
---|---|---|
committer | bharathkkb <bharathkkb@pixelblenders.com> | 2015-10-16 11:41:52 -0700 |
commit | 80bb3a0642c88f70c695c93ccb72c33f9667b4fb (patch) | |
tree | 816008a64756320208bf716a8618c200605ad424 /javascript.html.markdown | |
parent | 91218b4fce343aaf0823d8b8ff0d50c4378ede02 (diff) |
Added backticks for a keyword.
Added backticks for the “this” keyword.
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 6ea0b0bb..34ba9b47 100644 --- a/javascript.html.markdown +++ b/javascript.html.markdown @@ -413,7 +413,7 @@ var doubler = product.bind(this, 2); doubler(8); // = 16 // When you call a function with the `new` keyword, a new object is created, and -// made available to the function via the this keyword. Functions designed to be +// made available to the function via the `this` keyword. Functions designed to be // called like that are called constructors. var MyConstructor = function(){ |