diff options
author | Georg Brandl <georg@python.org> | 2009-06-30 16:15:43 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-06-30 16:15:43 (GMT) |
commit | 3d5c87a23caf224b75fd2b0533d78aac74e7acdf (patch) | |
tree | b806f87fbe2a72e78e5caf6596a422ed83e47125 /Doc/library/decimal.rst | |
parent | 2f865b962cc26366ddd374233ee78ee759e62f68 (diff) | |
download | cpython-3d5c87a23caf224b75fd2b0533d78aac74e7acdf.zip cpython-3d5c87a23caf224b75fd2b0533d78aac74e7acdf.tar.gz cpython-3d5c87a23caf224b75fd2b0533d78aac74e7acdf.tar.bz2 |
#6376: fix copy-n-paste oversight.
Diffstat (limited to 'Doc/library/decimal.rst')
-rw-r--r-- | Doc/library/decimal.rst | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Doc/library/decimal.rst b/Doc/library/decimal.rst index 8d11315..0b498a1 100644 --- a/Doc/library/decimal.rst +++ b/Doc/library/decimal.rst @@ -624,10 +624,9 @@ Decimal objects .. versionadded:: 2.6 - .. method:: logical_invert(other[, context]) + .. method:: logical_invert([context]) - :meth:`logical_invert` is a logical operation. The argument must - be a *logical operand* (see :ref:`logical_operands_label`). The + :meth:`logical_invert` is a logical operation. The result is the digit-wise inversion of the operand. .. versionadded:: 2.6 |