From 16bdfaa4e40d37699a18fe3464da67fba6f9d35a Mon Sep 17 00:00:00 2001 From: Potato <34000272+SimplePotato@users.noreply.github.com> Date: Fri, 26 Oct 2018 03:13:11 +0200 Subject: [PATCH] a couple of typos fixed (#28896) --- 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 34ea6ffc9b..0844186338 100644 --- a/guide/english/html/comments-in-html/index.md +++ b/guide/english/html/comments-in-html/index.md @@ -3,7 +3,7 @@ title: Comments in HTML --- ## 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 and understand the code he's written at a later stage. Comments can also used for commenting out lines of code for debugging purposes. +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 and understand the code he's written at a later stage. 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. @@ -29,9 +29,9 @@ Read more: https://html.com/tags/comment-tag/#ixzz4vtZHu5uR ``` ## Conditional Comments -Conditional Comments defines some HTML tags to be excuted when a certain codition is fullfilled. +Conditional Comments defines some HTML tags to be executed when a certain condition is fulfilled. -Conditional Comments are only recognised by Internet Explorer Version 5 through to Version 9 (IE5 - IE9). +Conditional Comments are only recognized by Internet Explorer Version 5 through to Version 9 (IE5 - IE9). ### Example ```html