diff options
author | Georg Brandl <georg@python.org> | 2006-05-10 20:09:23 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2006-05-10 20:09:23 (GMT) |
commit | dd0c31270310403a3a5c28db65af54a23829476f (patch) | |
tree | 8f10ffc8ec1b9d264c29ae315f19331d60493ee6 /Doc | |
parent | 356af466c833a5d4bd885f77b7e2cc73fb2ca635 (diff) | |
download | cpython-dd0c31270310403a3a5c28db65af54a23829476f.zip cpython-dd0c31270310403a3a5c28db65af54a23829476f.tar.gz cpython-dd0c31270310403a3a5c28db65af54a23829476f.tar.bz2 |
Fix two small errors in argument lists.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/lib/libdecimal.tex | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/lib/libdecimal.tex b/Doc/lib/libdecimal.tex index ffc3363..a0c7bde 100644 --- a/Doc/lib/libdecimal.tex +++ b/Doc/lib/libdecimal.tex @@ -713,8 +713,8 @@ here. \constant{NaN}. \end{methoddesc} -\begin{methoddesc}{sqrt}{} - Return the square root to full precision. +\begin{methoddesc}{sqrt}{x} + Return the square root of \var{x} to full precision. \end{methoddesc} \begin{methoddesc}{subtract}{x, y} @@ -734,7 +734,7 @@ here. or \constant{Rounded}. \end{methoddesc} -\begin{methoddesc}{to_sci_string}{} +\begin{methoddesc}{to_sci_string}{x} Converts a number to a string using scientific notation. \end{methoddesc} |