From 8b8dae0b759d1baf7cfad260bc1d9636a0a033c5 Mon Sep 17 00:00:00 2001 From: afabijan Date: Tue, 18 Sep 2018 16:45:52 +0200 Subject: [PATCH] Improving readability of rendered "'s" --- pyguide.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyguide.md b/pyguide.md index 8235e88..d8e2752 100644 --- a/pyguide.md +++ b/pyguide.md @@ -106,7 +106,7 @@ latter does not enforce that the arguments are actually unused. ### 2.2 Imports -Use `import`s for packages and modules only, not for individual classes or +Use `import` statements for packages and modules only, not for individual classes or functions. @@ -1816,7 +1816,7 @@ with contextlib.closing(urllib.urlopen("http://www.python.org/")) as front_page: Use `TODO` comments for code that is temporary, a short-term solution, or good-enough but not perfect. -`TODO`s should include the string `TODO` in all caps, followed by the +`TODO` items should include the string `TODO` in all caps, followed by the name, e-mail address, or other identifier of the person or issue with the best context about the problem referenced by the `TODO`, in parentheses. A comment explaining what there is to do is required.