summary refs log tree commit diff
path: root/manual/arith.texi
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1994-10-05 04:33:45 +0000
committerRoland McGrath <roland@gnu.org>1994-10-05 04:33:45 +0000
commit19235f9af579fbfa8bd4e72f9799d885fdeae49a (patch)
treea4b343bc81102bb1fb9f6d50fe4d1551bc1e4b74 /manual/arith.texi
parentc38c0d7079294ed427ef0c496fbd3ce25fe68f77 (diff)
downloadglibc-19235f9af579fbfa8bd4e72f9799d885fdeae49a.tar.gz
glibc-19235f9af579fbfa8bd4e72f9799d885fdeae49a.tar.xz
glibc-19235f9af579fbfa8bd4e72f9799d885fdeae49a.zip
Replace underscores with dashes inside @var.
Diffstat (limited to 'manual/arith.texi')
-rw-r--r--manual/arith.texi4
1 files changed, 2 insertions, 2 deletions
diff --git a/manual/arith.texi b/manual/arith.texi
index 618f517c2f..33a284185c 100644
--- a/manual/arith.texi
+++ b/manual/arith.texi
@@ -286,13 +286,13 @@ you explicit select another.
 
 @comment math.h
 @comment ANSI
-@deftypefun double modf (double @var{value}, double *@var{integer_part})
+@deftypefun double modf (double @var{value}, double *@var{integer-part})
 This function breaks the argument @var{value} into an integer part and a
 fractional part (between @code{-1} and @code{1}, exclusive).  Their sum
 equals @var{value}.  Each of the parts has the same sign as @var{value},
 so the rounding of the integer part is towards zero.
 
-@code{modf} stores the integer part in @code{*@var{integer_part}}, and
+@code{modf} stores the integer part in @code{*@var{integer-part}}, and
 returns the fractional part.  For example, @code{modf (2.5, &intpart)}
 returns @code{0.5} and stores @code{2.0} into @code{intpart}.
 @end deftypefun