diff options
author | Sandro Tosi <sandro.tosi@gmail.com> | 2011-12-24 18:55:49 (GMT) |
---|---|---|
committer | Sandro Tosi <sandro.tosi@gmail.com> | 2011-12-24 18:55:49 (GMT) |
commit | ec53eb817a1ec073842ef704961ea2d9c99952fc (patch) | |
tree | 920ec77d03aa6ac20f8b69c27ad48de8e9051954 /Doc/reference | |
parent | 4fbad84cb6e080f2374f4f19d8ed6bc154de04be (diff) | |
download | cpython-ec53eb817a1ec073842ef704961ea2d9c99952fc.zip cpython-ec53eb817a1ec073842ef704961ea2d9c99952fc.tar.gz cpython-ec53eb817a1ec073842ef704961ea2d9c99952fc.tar.bz2 |
fix Rather that/Rather than; thanks to Reuben Thomas from docs@
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 60e0e99..e32493f 100644 --- a/Doc/reference/simple_stmts.rst +++ b/Doc/reference/simple_stmts.rst @@ -352,7 +352,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. |