Skip to content

Commit

Permalink
* array.c (rb_ary_bsearch): Fix r38986 (missing whitespace)
Browse files Browse the repository at this point in the history
* range.c (range_bsearch): ditto

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38987 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
marcandre committed Jan 30, 2013
1 parent 20c0fb6 commit a7938af
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion array.c
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
2 changes: 1 addition & 1 deletion range.c
Original file line number Diff line number Diff line change
Expand Up @@ -596,7 +596,7 @@ range_bsearch(VALUE range)
} \
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)); \
} \
} while (0)
Expand Down

0 comments on commit a7938af

Please sign in to comment.