From 2904bb02c874f84899b8fad5340fba4ab80fc177 Mon Sep 17 00:00:00 2001 From: Erik OShaughnessy Date: Mon, 22 Jun 2020 11:24:06 -0500 Subject: [PATCH] Update item_06_avoid_using.py Me again. s/ofter/often/ and making cause plural will improve readability. --- item_06_avoid_using.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/item_06_avoid_using.py b/item_06_avoid_using.py index 65b7391..9cf52de 100644 --- a/item_06_avoid_using.py +++ b/item_06_avoid_using.py @@ -17,7 +17,7 @@ # ['orange', 'green', 'purple'] -# The problem is that the stride syntax ofter cause unexpected behavior that +# The problem is that the stride syntax often causes unexpected behavior that # can introduce bugs. For example, a common Python trick for reversing a byte # string is to slice the string with a stride of -1.