Skip to content

Commit 8e937f8

Browse files
committed
Fix typo in Python tutorial
1 parent 7aaaded commit 8e937f8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

β€ŽDoc/tutorial/classes.rstβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ are directly accessible:
120120
If a name is declared global, then all references and assignments go directly to
121121
the middle scope containing the module's global names. To rebind variables
122122
found outside of the innermost scope, the :keyword:`nonlocal` statement can be
123-
used; if not declared nonlocal, those variable are read-only (an attempt to
123+
used; if not declared nonlocal, those variables are read-only (an attempt to
124124
write to such a variable will simply create a *new* local variable in the
125125
innermost scope, leaving the identically named outer variable unchanged).
126126

0 commit comments

Comments
 (0)