diff --git a/1-js/08-prototypes/01-prototype-inheritance/article.md b/1-js/08-prototypes/01-prototype-inheritance/article.md index 4ee648e0..593a0a01 100644 --- a/1-js/08-prototypes/01-prototype-inheritance/article.md +++ b/1-js/08-prototypes/01-prototype-inheritance/article.md @@ -43,7 +43,7 @@ If we look for a property in `rabbit`, and it's missing, JavaScript automaticall For instance: -```js run +```js let animal = { eats: true };