[Python-checkins] r45958 - python/branches/release24-maint/Doc/lib/libdecimal.tex

georg.brandl python-checkins at python.org
Wed May 10 22:09:36 CEST 2006


Author: georg.brandl
Date: Wed May 10 22:09:36 2006
New Revision: 45958

Modified:
   python/branches/release24-maint/Doc/lib/libdecimal.tex
Log:
Fix two small errors in argument lists.
 (backport from rev. 45957)

Modified: python/branches/release24-maint/Doc/lib/libdecimal.tex
==============================================================================
--- python/branches/release24-maint/Doc/lib/libdecimal.tex	(original)
+++ python/branches/release24-maint/Doc/lib/libdecimal.tex	Wed May 10 22:09:36 2006
@@ -689,8 +689,8 @@
   \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}
@@ -710,7 +710,7 @@
   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} 
 


More information about the Python-checkins mailing list