minor: copy fix

This commit is contained in:
Kyle Banker 2010-02-23 12:44:50 -05:00
parent 8f90cbfbf7
commit a7d4d5d277
1 changed files with 1 additions and 1 deletions

View File

@ -332,7 +332,7 @@ class BSON_RUBY
if options_str == '' if options_str == ''
Regexp.new(str, options) Regexp.new(str, options)
else else
warn("Use deprecated Regexp options #{options_str}; future versions of this MongoDB driver will support only i, m, and x. See deprecated class RegexpOfHolding for more info.") warn("Using deprecated Regexp options #{options_str}; future versions of this MongoDB driver will support only i, m, and x. See deprecated class RegexpOfHolding for more info.")
RegexpOfHolding.new(str, options, options_str) RegexpOfHolding.new(str, options, options_str)
end end
end end