intdoc.in: Fix the definition of COMPLEX ABS.
authorJames Smaby <jsmaby@virgo.umeche.maine.edu>
Tue, 10 Jul 2001 09:41:04 +0000 (09:41 +0000)
committerToon Moene <toon@gcc.gnu.org>
Tue, 10 Jul 2001 09:41:04 +0000 (09:41 +0000)
2001-07-10  James Smaby  <jsmaby@virgo.umeche.maine.edu>

* intdoc.in: Fix the definition of COMPLEX ABS.
Remove `the' where inappropriate.
* intdoc.texi: Rebuilt.

From-SVN: r43892

gcc/f/ChangeLog
gcc/f/intdoc.in
gcc/f/intdoc.texi

index 2c1726143fa92b390405145eaf00ed58cfddfbdf..ef3f81bc6bec2cfd2fb8bf978296db1662641355 100644 (file)
@@ -1,3 +1,9 @@
+2001-07-10  James Smaby  <jsmaby@virgo.umeche.maine.edu>
+
+       * intdoc.in: Fix the definition of COMPLEX ABS.
+       Remove `the' where inappropriate.
+       * intdoc.texi: Rebuilt.
+
 2001-07-04  Joseph S. Myers  <jsm28@cam.ac.uk>
 
        * g77.texi: Use gpl.texi and funding.texi.  Remove Look and Feel
index 565b771c4fa4fec666ed98caf615329ebe99a1e4..f702fa10b72a918ec8c774276cb34bb883756ff2 100644 (file)
@@ -55,11 +55,11 @@ If @var{@1@} is type @code{COMPLEX}, the absolute
 value is computed as:
 
 @example
-SQRT(REALPART(@var{@1@})**2IMAGPART(@var{@1@})**2)
+SQRT(REALPART(@var{@1@})**2+IMAGPART(@var{@1@})**2)
 @end example
 
 @noindent
-Otherwise, it is computed by negating the @var{@1@} if
+Otherwise, it is computed by negating @var{@1@} if
 it is negative, or returning @var{@1@}.
 
 @xref{Sign Intrinsic}, for how to explicitly
index a34f700570d8358d40a5bf6ff8e367bd882579e4..6165e442bb352adc3bddba78c6d0ce72831839b6 100644 (file)
@@ -868,11 +868,11 @@ If @var{A} is type @code{COMPLEX}, the absolute
 value is computed as:
 
 @example
-SQRT(REALPART(@var{A})**2IMAGPART(@var{A})**2)
+SQRT(REALPART(@var{A})**2+IMAGPART(@var{A})**2)
 @end example
 
 @noindent
-Otherwise, it is computed by negating the @var{A} if
+Otherwise, it is computed by negating @var{A} if
 it is negative, or returning @var{A}.
 
 @xref{Sign Intrinsic}, for how to explicitly