Commit 8e937f80 authored by Berker Peksag's avatar Berker Peksag

Fix typo in Python tutorial

parent 7aaaded8
...@@ -120,7 +120,7 @@ are directly accessible: ...@@ -120,7 +120,7 @@ are directly accessible:
If a name is declared global, then all references and assignments go directly to If a name is declared global, then all references and assignments go directly to
the middle scope containing the module's global names. To rebind variables the middle scope containing the module's global names. To rebind variables
found outside of the innermost scope, the :keyword:`nonlocal` statement can be found outside of the innermost scope, the :keyword:`nonlocal` statement can be
used; if not declared nonlocal, those variable are read-only (an attempt to used; if not declared nonlocal, those variables are read-only (an attempt to
write to such a variable will simply create a *new* local variable in the write to such a variable will simply create a *new* local variable in the
innermost scope, leaving the identically named outer variable unchanged). innermost scope, leaving the identically named outer variable unchanged).
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment