From 88893507d4e11a25d7ba400b46cd9ab77f625be2 Mon Sep 17 00:00:00 2001 From: bhumijgupta Date: Mon, 24 Jun 2019 16:30:03 +0530 Subject: [PATCH] Migrate changes made in python/pep8@baef778 --- index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index 14bb6b6..96fb696 100644 --- a/index.html +++ b/index.html @@ -743,11 +743,11 @@ initialize(FILES, error=True,)

Comments that contradict the code are worse than no comments. Always make a priority of keeping the comments up-to-date when the code changes!

-

Comments should be complete sentences. If a comment is a phrase or sentence, its first word should be capitalized, unless it is an identifier that begins with a lower case letter (never alter the case of identifiers!).

+

Comments should be complete sentences. The first word should be capitalized, unless it is an identifier that begins with a lower case letter (never alter the case of identifiers!).

-

If a comment is short, the period at the end can be omitted. Block comments generally consist of one or more paragraphs built out of complete sentences, and each sentence should end in a period.

+

Block comments generally consist of one or more paragraphs built out of complete sentences, with each sentence ending in a period.

-

You should use two spaces after a sentence-ending period.

+

You should use two spaces after a sentence-ending period in multi sentence comments, except after the final sentence.

When writing English, follow Strunk and White.