diff options
Diffstat (limited to 'Doc')
-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. |