Fixed some minor errors in the documentation.
diff --git a/doc/SoftFloat-history.html b/doc/SoftFloat-history.html index 65e3ca2..9357ca9 100644 --- a/doc/SoftFloat-history.html +++ b/doc/SoftFloat-history.html
@@ -133,7 +133,7 @@ <LI> Original release, based on work done for the International Computer Science -Institute (ICSI) in Berkely, California. +Institute (ICSI) in Berkeley, California. </UL>
diff --git a/doc/SoftFloat-source.html b/doc/SoftFloat-source.html index bb39cb0..c2b14a5 100644 --- a/doc/SoftFloat-source.html +++ b/doc/SoftFloat-source.html
@@ -121,9 +121,9 @@ by these sources: <BLOCKQUOTE> <TABLE> -<COL WIDTH=*> +<COL> <COL WIDTH=10> -<COL WIDTH=*> +<COL> <TR> <TD VALIGN=TOP><NOBR>Par Lab:</NOBR></TD> <TD></TD>
diff --git a/doc/SoftFloat.html b/doc/SoftFloat.html index d406d91..db0af30 100644 --- a/doc/SoftFloat.html +++ b/doc/SoftFloat.html
@@ -157,9 +157,9 @@ by these sources: <BLOCKQUOTE> <TABLE> -<COL WIDTH=*> +<COL> <COL WIDTH=10> -<COL WIDTH=*> +<COL> <TR> <TD VALIGN=TOP><NOBR>Par Lab:</NOBR></TD> <TD></TD> @@ -715,10 +715,10 @@ floating-point input is passed by value or via pointers: <BLOCKQUOTE> <PRE> -int32_t f64_to_i32( float64_t <I>a</I>, uint_fast8_t <I>roundingMode</I>, bool <I>exact</I> ); +int_fast32_t f64_to_i32( float64_t <I>a</I>, uint_fast8_t <I>roundingMode</I>, bool <I>exact</I> ); </PRE> <PRE> -int32_t +int_fast32_t f128M_to_i32( const float128_t *<I>aPtr</I>, uint_fast8_t <I>roundingMode</I>, bool <I>exact</I> ); </PRE> </BLOCKQUOTE> @@ -769,10 +769,10 @@ <CODE><I>roundingMode</I></CODE> argument: <BLOCKQUOTE> <PRE> -int32_t f64_to_i32_r_minMag( float64_t <I>a</I>, bool <I>exact</I> ); +int_fast32_t f64_to_i32_r_minMag( float64_t <I>a</I>, bool <I>exact</I> ); </PRE> <PRE> -int32_t f128M_to_i32_r_minMag( const float128_t *<I>aPtr</I>, bool <I>exact</I> ); +int_fast32_t f128M_to_i32_r_minMag( const float128_t *<I>aPtr</I>, bool <I>exact</I> ); </PRE> </BLOCKQUOTE> </P>