From 93cd25d0a89790eb2530ce7664a285889ada7833 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Fri, 14 Feb 2014 14:10:39 -0500 Subject: [PATCH] fix links to builtin repr function (closes #20573) --- Doc/library/repr.rst | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Doc/library/repr.rst b/Doc/library/repr.rst index a9280bb431..b60418613b 100644 --- a/Doc/library/repr.rst +++ b/Doc/library/repr.rst @@ -24,8 +24,9 @@ This module provides a class, an instance, and a function: .. class:: Repr() Class which provides formatting services useful in implementing functions - similar to the built-in :func:`repr`; size limits for different object types - are added to avoid the generation of representations which are excessively long. + similar to the built-in :ref:`repr() `; size limits for different + object types are added to avoid the generation of representations which are + excessively long. .. data:: aRepr @@ -96,8 +97,8 @@ which format specific object types. .. method:: Repr.repr(obj) - The equivalent to the built-in :func:`repr` that uses the formatting imposed by - the instance. + The equivalent to the built-in :ref:`repr() ` that uses the + formatting imposed by the instance. .. method:: Repr.repr1(obj, level) -- 2.50.1