diff options
author | Sandro Tosi <sandro.tosi@gmail.com> | 2011-12-24 19:55:49 +0100 |
---|---|---|
committer | Sandro Tosi <sandro.tosi@gmail.com> | 2011-12-24 19:55:49 +0100 |
commit | ec53eb817a1ec073842ef704961ea2d9c99952fc (patch) | |
tree | 920ec77d03aa6ac20f8b69c27ad48de8e9051954 | |
parent | 4fbad84cb6e080f2374f4f19d8ed6bc154de04be (diff) | |
download | cpython-git-ec53eb817a1ec073842ef704961ea2d9c99952fc.tar.gz |
fix Rather that/Rather than; thanks to Reuben Thomas from docs@
-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 60e0e993e4..e32493fabe 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. |