Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit bcd1df7

Browse files
committed
The fpectl module does not work on Windows, so remove Windows from the
\platform statement. Also fix a minor style consistency nit in an example.
1 parent a939911 commit bcd1df7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Doc/lib/libfpectl.tex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ \section{\module{fpectl} ---
22
Floating point exception control}
33

44
\declaremodule{extension}{fpectl}
5-
\platform{Unix, Windows}
5+
\platform{Unix}
66
\moduleauthor{Lee Busby}{[email protected]}
77
\sectionauthor{Lee Busby}{[email protected]}
88
\modulesynopsis{Provide control for floating point exception handling.}
@@ -18,7 +18,7 @@ \section{\module{fpectl} ---
1818
>>> import math
1919
>>> math.exp(1000)
2020
inf
21-
>>> math.exp(1000)/math.exp(1000)
21+
>>> math.exp(1000) / math.exp(1000)
2222
nan
2323
\end{verbatim}
2424

0 commit comments

Comments
 (0)