From 495049625a732e3a8ca0af7bed7cf0895ac3c7d5 Mon Sep 17 00:00:00 2001 From: Chirag Ravindra Date: Fri, 16 Mar 2018 19:30:19 +0530 Subject: [PATCH] Edited example code snippet to throw error In the example snippet, the word 'console' has been changed to say 'cosnole' to throw the error in the example. --- src/content/guides/development.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/guides/development.md b/src/content/guides/development.md index 78de45e13453..b781175a3a27 100644 --- a/src/content/guides/development.md +++ b/src/content/guides/development.md @@ -59,7 +59,7 @@ __src/print.js__ ``` diff export default function printMe() { - console.log('I get called from print.js!'); -+ console.log('I get called from print.js!'); ++ cosnole.log('I get called from print.js!'); } ```