st.c: tweaked comment

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@44009 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
duerst 2013-12-05 10:35:50 +00:00
parent 4876dd3fb1
commit 737c7d816b
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Thu Dec 5 19:35:35 2013 Martin Duerst <duerst@it.aoyama.ac.jp>
* st.c: tweaked comment
Thu Dec 5 19:21:10 2013 Aman Gupta <ruby@tmm1.net>
* gc.c (struct rb_objspace): rename internal last_collection_flags to

2
st.c
View File

@ -196,7 +196,7 @@ new_size(st_index_t size)
for (i = 0, newsize = MINSIZE; i < numberof(primes); i++, newsize <<= 1) {
if (newsize > size) return primes[i];
}
/* Ran out of polynomials */
/* Ran out of primes */
#ifndef NOT_RUBY
rb_raise(rb_eRuntimeError, "st_table too big");
#endif