Edit typo

This commit is contained in:
Aadith PM 2017-06-18 19:59:47 +05:30 committed by GitHub
parent d67c04c22f
commit 9f5ff21401

View file

@ -89,7 +89,7 @@ The constructor can't be called again, because it is not saved anywhere, just cr
Inside a function, we can check whether it was called with `new` or without it, using a special `new.target` property.
It is empty for regulsar calls and equals the function if called with `new`:
It is empty for regular calls and equals the function if called with `new`:
```js run
function User() {