From: Erich Ritz Date: Mon, 1 Nov 2010 18:50:24 +0000 (-0400) Subject: Fix typo in comment. X-Git-Tag: glibc-2.13~59 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0e012e8734d454f85bb1e3a50167dd61000b6ce4;p=thirdparty%2Fglibc.git Fix typo in comment. --- diff --git a/ChangeLog b/ChangeLog index ba97e1a4544..33c7a9b7298 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2010-10-28 Erich Ritz + + * math/math.h (isinf): Fix typo in comment. + 2010-11-01 Ulrich Drepper * po/da.po: Update from translation team. diff --git a/math/math.h b/math/math.h index 4e65678b8d8..aeb54d9ed81 100644 --- a/math/math.h +++ b/math/math.h @@ -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))