]> granicus.if.org Git - python/commitdiff
markup fix
authorDavid Goodger <goodger@python.org>
Sat, 31 Jan 2009 22:53:46 +0000 (22:53 +0000)
committerDavid Goodger <goodger@python.org>
Sat, 31 Jan 2009 22:53:46 +0000 (22:53 +0000)
Doc/tutorial/floatingpoint.rst

index 6913c46b796a12df22049c479ab928990c4970d0..cb3009b45f4a844b65f885037ab8daa329391540 100644 (file)
@@ -157,7 +157,7 @@ Why is that?  1/10 is not exactly representable as a binary fraction. Almost all
 machines today (November 2000) use IEEE-754 floating point arithmetic, and
 almost all platforms map Python floats to IEEE-754 "double precision".  754
 doubles contain 53 bits of precision, so on input the computer strives to
-convert 0.1 to the closest fraction it can of the form *J*/2\*\**N* where *J* is
+convert 0.1 to the closest fraction it can of the form *J*/2**\ *N* where *J* is
 an integer containing exactly 53 bits.  Rewriting ::
 
    1 / 10 ~= J / (2**N)