diff options
author | Georg Brandl <georg@python.org> | 2009-07-26 14:19:57 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-07-26 14:19:57 (GMT) |
commit | 9fa61bb37d68225c827aa7809382ea701c264db5 (patch) | |
tree | 7a086015c9e4ecbb02ad38895cf7dcc4cb7be605 /Doc/library/decimal.rst | |
parent | 74f8fc0b1bccc971a3055b2e364c4a2db5123d50 (diff) | |
download | cpython-9fa61bb37d68225c827aa7809382ea701c264db5.zip cpython-9fa61bb37d68225c827aa7809382ea701c264db5.tar.gz cpython-9fa61bb37d68225c827aa7809382ea701c264db5.tar.bz2 |
#6577: fix (hopefully) all links to builtin instead of module/class-specific objects.
Diffstat (limited to 'Doc/library/decimal.rst')
-rw-r--r-- | Doc/library/decimal.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/decimal.rst b/Doc/library/decimal.rst index 0b498a1..53caff8 100644 --- a/Doc/library/decimal.rst +++ b/Doc/library/decimal.rst @@ -656,7 +656,7 @@ Decimal objects .. method:: max_mag(other[, context]) - Similar to the :meth:`max` method, but the comparison is done using the + Similar to the :meth:`.max` method, but the comparison is done using the absolute values of the operands. .. versionadded:: 2.6 @@ -670,7 +670,7 @@ Decimal objects .. method:: min_mag(other[, context]) - Similar to the :meth:`min` method, but the comparison is done using the + Similar to the :meth:`.min` method, but the comparison is done using the absolute values of the operands. .. versionadded:: 2.6 |