diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-07-24 02:31:28 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-07-24 02:31:28 (GMT) |
commit | 8e234c6e30cf601d5460463a21aabee788bacea2 (patch) | |
tree | c7e0ddd1df9be564f0be94b2ddc19abd7b5fd495 /Doc/whatsnew | |
parent | 415ce062bc8d9daa78fbd898f0824ef0eceac443 (diff) | |
download | cpython-8e234c6e30cf601d5460463a21aabee788bacea2.zip cpython-8e234c6e30cf601d5460463a21aabee788bacea2.tar.gz cpython-8e234c6e30cf601d5460463a21aabee788bacea2.tar.bz2 |
fix markup
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/2.6.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/2.6.rst b/Doc/whatsnew/2.6.rst index 203091f..a8d89cb 100644 --- a/Doc/whatsnew/2.6.rst +++ b/Doc/whatsnew/2.6.rst @@ -1144,7 +1144,7 @@ The :meth:`register` method is useful when you've written a new ABC that can describe an existing type or class, or if you want to declare that some third-party class implements an ABC. For example, if you defined a :class:`PrintableType` ABC, -it's legal to do: +it's legal to do:: # Register Python's types PrintableType.register(int) |