summaryrefslogtreecommitdiffstats
path: root/array.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2000-10-31 08:37:47 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2000-10-31 08:37:47 +0000
commitcecaed6f4af527cde4ab03eb61baeb397cd96b5e (patch)
tree8aa0738f21319dc82e0403a4f065f831a907ebcc /array.c
parent7e953f2d81f7a68abdd711180b56246b5d1a83dc (diff)
downloadruby-cecaed6f4af527cde4ab03eb61baeb397cd96b5e.tar.gz
ruby-cecaed6f4af527cde4ab03eb61baeb397cd96b5e.tar.xz
ruby-cecaed6f4af527cde4ab03eb61baeb397cd96b5e.zip
matz
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@1023 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'array.c')
-rw-r--r--array.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/array.c b/array.c
index 48fb0a642..617f6e22a 100644
--- a/array.c
+++ b/array.c
@@ -1586,7 +1586,7 @@ rb_ary_flatten_bang(ary)
}
id = rb_obj_id(ary2);
if (rb_ary_includes(flattening, id)) {
- rb_raise(rb_eArgError, "tryed to flatten recursive array");
+ rb_raise(rb_eArgError, "tried to flatten recursive array");
}
rb_ary_push(flattening, id);
}