diff options
author | ven <vendethiel@hotmail.fr> | 2015-10-16 22:05:20 +0200 |
---|---|---|
committer | ven <vendethiel@hotmail.fr> | 2015-10-16 22:05:20 +0200 |
commit | cb213af8b85eb8254769dc2bfed41159805f2ef7 (patch) | |
tree | bd2c37cc467d59554df72488d84efd0649c1341d | |
parent | 8224a6767f2ac8f96f7b8cc6d9b97c4be1d179af (diff) | |
parent | 80bb3a0642c88f70c695c93ccb72c33f9667b4fb (diff) |
Merge pull request #1569 from bharathkkb/master
Added backticks for a keyword.
-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(){ |