summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-06-10 13:51:20 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-06-10 13:51:20 +0000
commit46bb1a9f922b4a201f754e2050332529e4629379 (patch)
tree431e875b910ae87672d0b0a5834de929e916187f
parentbaabb76cd745d2ed9b4dba6c33710944321ded98 (diff)
Update comment.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@41220 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--bignum.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bignum.c b/bignum.c
index e1c2426704..61c854c18b 100644
--- a/bignum.c
+++ b/bignum.c
@@ -629,7 +629,7 @@ absint_numwords_generic(size_t numbytes, int nlz_bits_in_msbyte, size_t word_num
* This function returns ((val_numbits * CHAR_BIT + word_numbits - 1) / word_numbits)
* where val_numbits is the number of bits of abs(val).
*
- * This function can overflow if _val_ is very big and word_numbits is less than CHAR_BIT.
+ * This function can overflow.
* When overflow occur, (size_t)-1 is returned.
*
* If nlz_bits_ret is not NULL and overflow is not occur,