aboutsummaryrefslogtreecommitdiffstats
path: root/st.c
diff options
context:
space:
mode:
authorduerst <duerst@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-12-05 10:35:50 +0000
committerduerst <duerst@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-12-05 10:35:50 +0000
commit737c7d816bc5344206b917ef419efa83568a5175 (patch)
tree71e129275f310ac343cfa8eccd2df2082da2d364 /st.c
parent4876dd3fb1715b4ea11051532ed3a3c2e6b0a628 (diff)
downloadruby-737c7d816bc5344206b917ef419efa83568a5175.tar.gz
st.c: tweaked comment
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@44009 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'st.c')
-rw-r--r--st.c2
1 files changed, 1 insertions, 1 deletions
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