Skip to content

Commit c86d75a

Browse files
committed
or -> that is
1 parent cf5bdfc commit c86d75a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Doc/faq/programming.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ they all return ``16``::
228228
This happens because ``x`` is not local to the lambdas, but is defined in
229229
the outer scope, and it is accessed when the lambda is called --- not when it
230230
is defined. At the end of the loop, the value of ``x`` is ``4``, so all the
231-
functions now return ``4**2``, or ``16``. You can also verify this by
231+
functions now return ``4**2``, that is ``16``. You can also verify this by
232232
changing the value of ``x`` and see how the results of the lambdas change::
233233

234234
>>> x = 8

0 commit comments

Comments
 (0)