summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorven <vendethiel@hotmail.fr>2015-10-18 11:48:06 +0200
committerven <vendethiel@hotmail.fr>2015-10-18 11:48:06 +0200
commit6e5262ef69e4faeae1f4726a71a814c3144425f0 (patch)
tree77babbb8119a8abb05ab1df6519daa18eec6d145
parent2b95f4bbecf1c9cf2c1f84cb6f8c0dcfcef5e6d8 (diff)
parentc23bba2b6010e659d518f144d689102d0e9fb147 (diff)
Merge pull request #1613 from Alters/master
[javascript/en] Small typo fix
-rw-r--r--javascript.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/javascript.html.markdown b/javascript.html.markdown
index 937354eb..9c4f06fc 100644
--- a/javascript.html.markdown
+++ b/javascript.html.markdown
@@ -324,7 +324,7 @@ i; // = 5 - not undefined as you'd expect in a block-scoped language
// scope.
(function(){
var temporary = 5;
- // We can access the global scope by assiging to the "global object", which
+ // We can access the global scope by assigning to the "global object", which
// in a web browser is always `window`. The global object may have a
// different name in non-browser environments such as Node.js.
window.permanent = 10;