diff options
author | Cameron Wood <github@cbwood.net> | 2015-10-18 05:46:35 -0400 |
---|---|---|
committer | Cameron Wood <github@cbwood.net> | 2015-10-18 05:46:35 -0400 |
commit | c23bba2b6010e659d518f144d689102d0e9fb147 (patch) | |
tree | 1d8e59d56088a0deb3d132578ced5d96468c919d /javascript.html.markdown | |
parent | 903ec29a3d97e62f9210968e8ebf1f0f7f156dbb (diff) |
[javascript/en] Small typo fix
Just a simple 1-word 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; |