diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2007-09-24 23:46:28 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2007-09-24 23:46:28 (GMT) |
commit | 6d407e4d3d20e019ee2211b7dc09ccca430a9d32 (patch) | |
tree | 7711dd6dc8ffb4dd23f247caf531c26fafc836df | |
parent | 9c90635bcbc63c36bcdc9f2835be930a9ecfb073 (diff) | |
download | cpython-6d407e4d3d20e019ee2211b7dc09ccca430a9d32.zip cpython-6d407e4d3d20e019ee2211b7dc09ccca430a9d32.tar.gz cpython-6d407e4d3d20e019ee2211b7dc09ccca430a9d32.tar.bz2 |
Typo fix
-rw-r--r-- | Doc/library/decimal.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/decimal.rst b/Doc/library/decimal.rst index 3cbf091..6fc0aa6 100644 --- a/Doc/library/decimal.rst +++ b/Doc/library/decimal.rst @@ -179,7 +179,7 @@ floating point flying circus:: >>> c % a Decimal("0.77") -And some mathematic functions are also available to Decimal:: +And some mathematical functions are also available to Decimal:: >>> Decimal(2).sqrt() Decimal("1.414213562373095048801688724") |