Merge pull request #1613 from Alters/master

[javascript/en] Small typo fix
This commit is contained in:
ven 2015-10-18 11:48:06 +02:00
commit 6e5262ef69

View File

@ -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;