]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Fix typo in comment.
authorErich Ritz <erichritz@gmail.com>
Mon, 1 Nov 2010 18:50:24 +0000 (14:50 -0400)
committerUlrich Drepper <drepper@gmail.com>
Mon, 1 Nov 2010 18:50:24 +0000 (14:50 -0400)
ChangeLog
math/math.h

index ba97e1a45442e07129cec5eeeb67379e87bbcf08..33c7a9b7298658dc2f3cdf5c4157b8a03586f1f2 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
index 4e65678b8d881f71593f2ce1fef1b6b4ee303287..aeb54d9ed81a35e1cc4464ade86182dfe144f482 100644 (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))