summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Doc/faq/programming.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/faq/programming.rst b/Doc/faq/programming.rst
index 1af0448..a64e8ac 100644
--- a/Doc/faq/programming.rst
+++ b/Doc/faq/programming.rst
@@ -1175,7 +1175,7 @@ Here are three variations.::
mylist[:] = (x for x in mylist if keep_condition)
mylist[:] = [x for x in mylist if keep_condition]
-If space is not an issue, the list comprehension may be fastest.
+The list comprehension may be fastest.
How do you make an array in Python?