]> granicus.if.org Git - python/commitdiff
Fix bad markup.
authorGuido van Rossum <guido@python.org>
Wed, 3 Dec 2008 04:18:17 +0000 (04:18 +0000)
committerGuido van Rossum <guido@python.org>
Wed, 3 Dec 2008 04:18:17 +0000 (04:18 +0000)
Doc/whatsnew/3.0.rst

index c195f53d2548d5112b381642708667b6647e6b22..2c2e168d36e92cc8c756196da230fa026417d926 100644 (file)
@@ -221,10 +221,10 @@ changed.
   hold text is :class:`str`, the type used to hold data is
   :class:`bytes`.  The biggest difference with the 2.x situation is
   that any attempt to mix text and data in Python 3.0 raises
-  :ext:`TypeError`, whereas if you were to mix Unicode and 8-bit
+  :exc:`TypeError`, whereas if you were to mix Unicode and 8-bit
   strings in Python 2.x, it would work if the 8-bit string happened to
   contain only 7-bit (ASCII) bytes, but you would get
-  :ext:`UnicodeDecodeError` if it contained non-ASCII values.  This
+  :exc:`UnicodeDecodeError` if it contained non-ASCII values.  This
   value-specific behavior has caused numerous sad faces over the
   years.