aboutsummaryrefslogtreecommitdiffstats
path: root/array.c
diff options
context:
space:
mode:
authormarcandre <marcandre@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-01-30 06:01:40 +0000
committermarcandre <marcandre@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-01-30 06:01:40 +0000
commita7938af19c540c0f3bbd631889d936c2b0d5707b (patch)
tree02ad9f591050730c1569be5fea1ecbe8b5e8564c /array.c
parent20c0fb69d65f20d42caf980de042396370dd0ba4 (diff)
downloadruby-a7938af19c540c0f3bbd631889d936c2b0d5707b.tar.gz
* array.c (rb_ary_bsearch): Fix r38986 (missing whitespace)
* range.c (range_bsearch): ditto git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38987 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 e76801df50..271e2187e6 100644
--- a/array.c
+++ b/array.c
@@ -2463,7 +2463,7 @@ rb_ary_bsearch(VALUE ary)
}
else {
rb_raise(rb_eTypeError, "wrong argument type %s"
- "(must respond be numeric, true, false or nil)",
+ " (must respond be numeric, true, false or nil)",
rb_obj_classname(v));
}
if (smaller) {