aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--st.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 84f6b91307..9f4a76821a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
diff --git a/st.c b/st.c
index 163135912b..2335fddc84 100644
--- a/st.c
+++ b/st.c
@@ -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