diff options
author | Raymond Hettinger <python@rcn.com> | 2003-11-12 16:42:10 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2003-11-12 16:42:10 (GMT) |
commit | 7d1dd0433463b59d7709db3b24113f63e17ba005 (patch) | |
tree | 16cee397fea2726e7cce9191ace18e94a45c26b8 /Doc | |
parent | bc3cba2881c4c99fa7cffe7c5bb46b596857f3d6 (diff) | |
download | cpython-7d1dd0433463b59d7709db3b24113f63e17ba005.zip cpython-7d1dd0433463b59d7709db3b24113f63e17ba005.tar.gz cpython-7d1dd0433463b59d7709db3b24113f63e17ba005.tar.bz2 |
Fix typo
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/whatsnew24.tex | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/whatsnew/whatsnew24.tex b/Doc/whatsnew/whatsnew24.tex index 23c3431..646a35c 100644 --- a/Doc/whatsnew/whatsnew24.tex +++ b/Doc/whatsnew/whatsnew24.tex @@ -129,8 +129,8 @@ they were input. like the in-place \method{sort()} method but has been made suitable for use in expressions. The differences are: \begin{itemize} - \item the input make be any iterable; - \item a copy is sorted, leaving the original intact; and + \item the input may be any iterable; + \item a newly formed copy is sorted, leaving the original intact; and \item the expression returns the new sorted copy \end{itemize} |