Fix typo in comment.

This commit is contained in:
Erich Ritz 2010-11-01 14:50:24 -04:00 committed by Ulrich Drepper
parent de0ff7bcf6
commit 0e012e8734
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2010-10-28 Erich Ritz <erichritz@gmail.com>
* math/math.h (isinf): Fix typo in comment.
2010-11-01 Ulrich Drepper <drepper@gmail.com>
* po/da.po: Update from translation team.

View File

@ -261,7 +261,7 @@ enum
? __isnan (x) : __isnanl (x))
# endif
/* Return nonzero value is X is positive or negative infinity. */
/* Return nonzero value if X is positive or negative infinity. */
# ifdef __NO_LONG_DOUBLE_MATH
# define isinf(x) \
(sizeof (x) == sizeof (float) ? __isinff (x) : __isinf (x))