Merge pull request #114 from maniart/patch-1

Small typo
This commit is contained in:
Ilya Kantor 2017-08-05 00:17:02 +02:00 committed by GitHub
commit e74ca67e08

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() {}