diff options
author | ven <vendethiel@hotmail.fr> | 2015-10-18 11:48:06 +0200 |
---|---|---|
committer | ven <vendethiel@hotmail.fr> | 2015-10-18 11:48:06 +0200 |
commit | 6e5262ef69e4faeae1f4726a71a814c3144425f0 (patch) | |
tree | 77babbb8119a8abb05ab1df6519daa18eec6d145 /javascript.html.markdown | |
parent | 2b95f4bbecf1c9cf2c1f84cb6f8c0dcfcef5e6d8 (diff) | |
parent | c23bba2b6010e659d518f144d689102d0e9fb147 (diff) |
Merge pull request #1613 from Alters/master
[javascript/en] Small typo fix
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 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; |