Skip to content

Commit 9f5ff21

Browse files
authored
Edit typo
1 parent d67c04c commit 9f5ff21

File tree

1 file changed

+1
-1
lines changed
  • 1-js/04-object-basics/06-constructor-new

1 file changed

+1
-1
lines changed

1-js/04-object-basics/06-constructor-new/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ The constructor can't be called again, because it is not saved anywhere, just cr
8989

9090
Inside a function, we can check whether it was called with `new` or without it, using a special `new.target` property.
9191

92-
It is empty for regulsar calls and equals the function if called with `new`:
92+
It is empty for regular calls and equals the function if called with `new`:
9393

9494
```js run
9595
function User() {

0 commit comments

Comments
 (0)