summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2008-07-22 19:27:12 (GMT)
committerRaymond Hettinger <python@rcn.com>2008-07-22 19:27:12 (GMT)
commit6a883844a216075572e43045c104cef65093d61e (patch)
tree2d1b1e9774f00388d2c0cb7f061dc3b9ba5b3957 /Doc/whatsnew
parent251803bddb79e4322bc7bc9c8f38afe84d8c89d9 (diff)
downloadcpython-6a883844a216075572e43045c104cef65093d61e.zip
cpython-6a883844a216075572e43045c104cef65093d61e.tar.gz
cpython-6a883844a216075572e43045c104cef65093d61e.tar.bz2
Fix spelling.
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/3.0.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/whatsnew/3.0.rst b/Doc/whatsnew/3.0.rst
index 15c9463..1840fda 100644
--- a/Doc/whatsnew/3.0.rst
+++ b/Doc/whatsnew/3.0.rst
@@ -118,7 +118,7 @@ changes to rarely used features.)
``print(x)`` instead!
* When using the ``2to3`` source-to-source conversion tool, all
- ``print`` statements are autmatically converted to :func:`print`
+ ``print`` statements are automatically converted to :func:`print`
function calls, so this is mostly a non-issue for larger projects.
* Python 3.0 uses strings and bytes instead of the Unicode strings and
@@ -159,7 +159,7 @@ Strings and Bytes
implementation are like :class:`unicode` in 2.x.
* The :class:`basestring` superclass has been removed. The ``2to3`` tool
- replaces every occurence of :class:`basestring` with :class:`str`.
+ replaces every occurrence of :class:`basestring` with :class:`str`.
* PEP 3137: There is a new type, :class:`bytes`, to represent binary data (and
encoded text, which is treated as binary data until you decide to decode it).