Skip to content

Commit 7c7d1f8

Browse files
committed
Correct two floating-point representations printed by the interpreter in
interactive examples. Error noted by Dinu Gherman.
1 parent aac257d commit 7c7d1f8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Doc/tut/tut.tex

+2-2
Original file line numberDiff line numberDiff line change
@@ -426,7 +426,7 @@ \subsection{Numbers \label{numbers}}
426426

427427
\begin{verbatim}
428428
>>> 4 * 2.5 / 3.3
429-
3.0303030303
429+
3.0303030303030303
430430
>>> 7.0 / 2
431431
3.5
432432
\end{verbatim}
@@ -476,7 +476,7 @@ \subsection{Numbers \label{numbers}}
476476
>>> a.real
477477
1.5
478478
>>> abs(a)
479-
1.58113883008
479+
1.5811388300841898
480480
\end{verbatim}
481481

482482
In interactive mode, the last printed expression is assigned to the

0 commit comments

Comments
 (0)