From 8ca6a28a9bfbadf8e0cc5366202c5aa7f1ab9201 Mon Sep 17 00:00:00 2001 From: Alishaan Ali Date: Wed, 21 Nov 2018 08:58:10 -0500 Subject: [PATCH] Commenting Code Minor Grammatical Changes (#21175) --- guide/english/python/commenting-code/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/python/commenting-code/index.md b/guide/english/python/commenting-code/index.md index 6cd90b5875..4d3608ff54 100644 --- a/guide/english/python/commenting-code/index.md +++ b/guide/english/python/commenting-code/index.md @@ -1,7 +1,7 @@ --- title: Python Commenting Code --- -Comments are used to annotate, describe, or explain code that is complex or difficult to understand. Python will intentionally ignore comments when it compiles to bytecode by the interpreter. `PEP 8` has a section dealing with comments.They also increases the readablity of code by adding easy and descriptive language for better understanding. +Comments are used to annotate, describe, or explain code that is complex or difficult to understand. Python will intentionally ignore comments when it compiles to bytecode by the interpreter. `PEP 8` has a section dealing with comments. They also increase the readablity of code by adding easy and descriptive language for better understanding. **Block** and **inline** comments start with a `#`, followed by a space before the comment: