From bee66cb4c2a6fc30fdac73371cfa93d495122e94 Mon Sep 17 00:00:00 2001 From: "Violet.Lee" Date: Tue, 1 Oct 2019 23:59:31 +0900 Subject: [PATCH] minor --- 1-js/08-prototypes/01-prototype-inheritance/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 };