From f843e088ad43bc94f8a4daa6f55978a77b6f029b Mon Sep 17 00:00:00 2001 From: Vladimir Diaz Date: Wed, 29 Nov 2017 10:17:34 -0500 Subject: [PATCH] Revise sentence --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8d26f86..ef948f1 100644 --- a/README.md +++ b/README.md @@ -681,7 +681,7 @@ firstname, surname = get_full_name() print("Hello, Mr. " + surname) ``` -The majority of static analysis tools complain if a variable is assigned but not used thereafter. +The majority of tools for static code analysis complain if a variable is assigned but not used thereafter. By convention, unused values are assigned to `i`, `j`, `k`, and `_` (underscore character) and are understood as such. However, we think `junk` is more readable than `_` and easier for newcomers to understand.