From db79a3de79ed2677439338aa500dccfe1c22e8c3 Mon Sep 17 00:00:00 2001 From: Amoo Olusola Simeon Date: Sun, 28 Oct 2018 03:07:57 +0100 Subject: [PATCH] Fixed typo ad also added three back-ticks (#21138) Fixed typo on line 25, 'developer' was spelt 'developper'. Three back-ticks to indicate end of code highlighting was missing on line 41, so i added it. --- guide/english/css/comments-in-css/index.md | 1 + 1 file changed, 1 insertion(+) diff --git a/guide/english/css/comments-in-css/index.md b/guide/english/css/comments-in-css/index.md index c6429c1188..084f98bb11 100644 --- a/guide/english/css/comments-in-css/index.md +++ b/guide/english/css/comments-in-css/index.md @@ -38,6 +38,7 @@ You can also make your comments more readable by stylizing it. * The asterisk around the paragraph make it more readable. *** */ +``` You can add as many comments to your stylesheet as you like. It’s good practice to use CSS comments to help identify parts of any stylesheet that might be difficult to understand from a cursory glance. Comments are especially important when working in a team, when your code must be understood by others. By using CSS comments to make your stylesheets more readable, the CSS will be easier to maintain in the future.