From cf5af83e0bc7e6c14f588b11c8f5b799147fe37e Mon Sep 17 00:00:00 2001 From: albertocc Date: Tue, 16 Oct 2018 20:37:20 +0200 Subject: [PATCH] Fixed typo (#19532) commeting -> commenting --- guide/english/javascript/comments/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/javascript/comments/index.md b/guide/english/javascript/comments/index.md index bda44a0a5f..5f0fa4f1e8 100644 --- a/guide/english/javascript/comments/index.md +++ b/guide/english/javascript/comments/index.md @@ -39,7 +39,7 @@ function hello() { hello(); ``` -You can also prevent execution of Javascript code just commeting the code lines like this: +You can also prevent execution of Javascript code just commenting the code lines like this: ```javascript function hello() { /*console.log("Hello world!");*/