Small typo

This commit is contained in:
Mani Nilchiani 2017-07-29 01:07:09 -04:00 committed by GitHub
parent dd88ae4a95
commit 5e788c5597

View file

@ -75,7 +75,7 @@ function Rabbit() {}
alert( Rabbit.prototype.constructor == Rabbit ); // true
```
Naturally, it we do nothing, the `constructor` property is available to all rabbits through `[[Prototype]]`:
Naturally, if we do nothing, the `constructor` property is available to all rabbits through `[[Prototype]]`:
```js run
function Rabbit() {}