diff options
author | Nicolas Boulenguez <nicolas.boulenguez@free.fr> | 2012-02-17 17:44:38 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2012-02-17 17:44:38 +0000 |
commit | cc6e48bc7c8e7a349147d5ce7683591175134076 (patch) | |
tree | c2df9fa3e01548be4bebf1736d1040ce8405765d /manual/math.texi | |
parent | 6dd8f3dca0dacac90815a8776142bd28ba59513e (diff) | |
download | glibc-cc6e48bc7c8e7a349147d5ce7683591175134076.tar glibc-cc6e48bc7c8e7a349147d5ce7683591175134076.tar.gz glibc-cc6e48bc7c8e7a349147d5ce7683591175134076.tar.bz2 glibc-cc6e48bc7c8e7a349147d5ce7683591175134076.zip |
Fix various problems with @deftypefun lines.
Diffstat (limited to 'manual/math.texi')
-rw-r--r-- | manual/math.texi | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/manual/math.texi b/manual/math.texi index 95e3378c9e..01e258f415 100644 --- a/manual/math.texi +++ b/manual/math.texi @@ -1148,13 +1148,13 @@ This function was introduced in @w{ISO C99}. @comment math.h @comment SVID -@deftypefun double jn (int n, double @var{x}) +@deftypefun double jn (int @var{n}, double @var{x}) @comment math.h @comment SVID -@deftypefunx float jnf (int n, float @var{x}) +@deftypefunx float jnf (int @var{n}, float @var{x}) @comment math.h @comment SVID -@deftypefunx {long double} jnl (int n, long double @var{x}) +@deftypefunx {long double} jnl (int @var{n}, long double @var{x}) @code{jn} returns the Bessel function of the first kind of order @var{n} of @var{x}. It may signal underflow if @var{x} is too large. @end deftypefun @@ -1191,13 +1191,13 @@ is negative, @code{y1} signals a domain error; if it is zero, @comment math.h @comment SVID -@deftypefun double yn (int n, double @var{x}) +@deftypefun double yn (int @var{n}, double @var{x}) @comment math.h @comment SVID -@deftypefunx float ynf (int n, float @var{x}) +@deftypefunx float ynf (int @var{n}, float @var{x}) @comment math.h @comment SVID -@deftypefunx {long double} ynl (int n, long double @var{x}) +@deftypefunx {long double} ynl (int @var{n}, long double @var{x}) @code{yn} returns the Bessel function of the second kind of order @var{n} of @var{x}. It may signal underflow if @var{x} is too large. If @var{x} is negative, @code{yn} signals a domain error; if it is zero, |