Skip to content

Commit 5e74d7c

Browse files
authored
Merge pull request #1975 from traxium/patch-1
Fix typo in /instanceof section (widow -> Window)
2 parents 83793dc + 41a1b92 commit 5e74d7c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

1-js/09-classes/06-instanceof/article.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ For most environment-specific objects, there is such a property. Here are some b
190190
191191
```js run
192192
// toStringTag for the environment-specific object and class:
193-
alert( window[Symbol.toStringTag]); // window
193+
alert( window[Symbol.toStringTag]); // Window
194194
alert( XMLHttpRequest.prototype[Symbol.toStringTag] ); // XMLHttpRequest
195195
196196
alert( {}.toString.call(window) ); // [object Window]

0 commit comments

Comments
 (0)