Skip to content

Commit 0e81fb4

Browse files
authored
Fix typo (#1061)
Fix typo
2 parents 358c140 + 1dc1e63 commit 0e81fb4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • 1-js/06-advanced-functions/05-global-object

1-js/06-advanced-functions/05-global-object/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ That said, using global variables is generally discouraged. There should be as f
5858

5959
We can test the global object for support of modern language features.
6060

61-
For instance, test if a build-in `Promise` object exists (it doesn't in really old browsers):
61+
For instance, test if a built-in `Promise` object exists (it doesn't in really old browsers):
6262
```js run
6363
if (!window.Promise) {
6464
alert("Your browser is really old!");

0 commit comments

Comments
 (0)