From 56f45c38a9dedf9ac715ef28212307a0816b6aa6 Mon Sep 17 00:00:00 2001 From: Jonathan Lawrence Date: Sun, 2 Jun 2019 05:04:07 -0400 Subject: [PATCH] Correct grammar and make more concise (#35179) * Correct Grammar and make more concise * Improve readability --- guide/english/html/comments-in-html/index.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/guide/english/html/comments-in-html/index.md b/guide/english/html/comments-in-html/index.md index 868a025a40..d60b8672b7 100644 --- a/guide/english/html/comments-in-html/index.md +++ b/guide/english/html/comments-in-html/index.md @@ -6,14 +6,14 @@ title: Comments in HTML The comment tag is an element used to leave notes, mostly related to the project or the website. This tag is frequently used to explain something in the code or leave some recommendations about the project. The comment tag also makes it easier for the developer to come back at a later stage and understand the code he's written earlier. Comments can also be used for commenting out lines of code for debugging purposes. -It is good practice to add comments to your code, especially when working with a team or at a company. It is also important that you write clear and concise comments that another developer could easier understand. +It is good practice to add clear and concise comments to your code. This is especially important when working with a team or at a company. It is important that your comments are easily understood by other developers. -Comments are started with ``, and can span multiple lines. They can contain code or text, and won't appear on the front-end of the website when a user visits a page. You can view comments through the Inspector Console, or by viewing Page Source. +Comments start with ``, and can span multiple lines. They can contain code or text, and won't appear on the front-end of the website when a user visits a page. You can view comments through the Inspector Console, or by viewing Page Source. ### Example ```html -