diff -r e0212060c80e Doc/library/codecs.rst --- a/Doc/library/codecs.rst Fri May 20 17:44:44 2016 -0400 +++ b/Doc/library/codecs.rst Sat May 21 11:23:47 2016 +0300 @@ -137,16 +137,16 @@ .. function:: getreader(encoding) - Look up the codec for the given encoding and return its StreamReader class or - factory function. + Look up the codec for the given encoding and return its :class:`StreamReader` + class or factory function. Raises a :exc:`LookupError` in case the encoding cannot be found. .. function:: getwriter(encoding) - Look up the codec for the given encoding and return its StreamWriter class or - factory function. + Look up the codec for the given encoding and return its :class:`StreamWriter` + class or factory function. Raises a :exc:`LookupError` in case the encoding cannot be found.