diff options
author | Sandro Tosi <sandro.tosi@gmail.com> | 2011-12-24 18:56:35 (GMT) |
---|---|---|
committer | Sandro Tosi <sandro.tosi@gmail.com> | 2011-12-24 18:56:35 (GMT) |
commit | 29cfdc7a61f2796788b244efbd4130ee7ebc45ea (patch) | |
tree | 673390a3ed22890c1ca13390d101d7633cd940e7 /Doc/reference | |
parent | 35927dea458ca5020cac107d6dc0335b137e51e0 (diff) | |
parent | 75c71ccf2af95d34d164e6ab149968f817809112 (diff) | |
download | cpython-29cfdc7a61f2796788b244efbd4130ee7ebc45ea.zip cpython-29cfdc7a61f2796788b244efbd4130ee7ebc45ea.tar.gz cpython-29cfdc7a61f2796788b244efbd4130ee7ebc45ea.tar.bz2 |
merge with 3.2
Diffstat (limited to 'Doc/reference')
-rw-r--r-- | Doc/reference/simple_stmts.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/reference/simple_stmts.rst b/Doc/reference/simple_stmts.rst index a375117..0bf2127 100644 --- a/Doc/reference/simple_stmts.rst +++ b/Doc/reference/simple_stmts.rst @@ -372,7 +372,7 @@ The :keyword:`del` statement del_stmt: "del" `target_list` Deletion is recursively defined very similar to the way assignment is defined. -Rather that spelling it out in full details, here are some hints. +Rather than spelling it out in full details, here are some hints. Deletion of a target list recursively deletes each target, from left to right. |