diff options
author | burley <burley@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-02-14 05:28:09 +0000 |
---|---|---|
committer | burley <burley@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-02-14 05:28:09 +0000 |
commit | 7900253dad857e6fbf8b443d9f1a1b42fb2f8fcf (patch) | |
tree | 3785efff5324d0db47ec453a7d62c7293390d65a /gcc/f/intdoc.in | |
parent | eb25cd72ecef275b3a193cf32816122caa76413d (diff) | |
download | gcc-7900253dad857e6fbf8b443d9f1a1b42fb2f8fcf.tar.gz |
fix LOG10 docs
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@25196 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/f/intdoc.in')
-rw-r--r-- | gcc/f/intdoc.in | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/gcc/f/intdoc.in b/gcc/f/intdoc.in index 6b9dd3b8b14..9005f0b6bfa 100644 --- a/gcc/f/intdoc.in +++ b/gcc/f/intdoc.in @@ -296,10 +296,9 @@ DEFDOC (DLOG, "Natural logarithm (archaic).", ARCHAIC (LOG, Log)) DEFDOC (CDLOG, "Natural logarithm (archaic).", ARCHAIC (LOG, Log)) -DEFDOC (LOG10, "Natural logarithm.", "\ -Returns the natural logarithm of @var{@1@}, which must -be greater than zero or, if type @code{COMPLEX}, must not -be zero. +DEFDOC (LOG10, "Base-10 logarithm.", "\ +Returns the base-10 logarithm of @var{@1@}, which must +be greater than zero. The inverse of this function is @samp{10. ** LOG10(@var{@1@})}. |