diff --git a/ChangeLog b/ChangeLog index 5bf7bbe341..adbe9e6593 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Tue Aug 21 05:25:41 2012 Eric Hodel + + * re.c (rb_reg_initialize_m): Forgot to update output for or'd-options + example. + Tue Aug 21 05:18:03 2012 Eric Hodel * re.c (rb_reg_initialize_m): Update example to show that regexp diff --git a/re.c b/re.c index e81677756b..f512fa4a94 100644 --- a/re.c +++ b/re.c @@ -2888,10 +2888,10 @@ rb_reg_match_m(int argc, VALUE *argv, VALUE re) * * When the +lang+ parameter is `n' or `N' sets the regexp no encoding. * - * r1 = Regexp.new('^a-z+:\\s+\w+') #=> /^a-z+:\s+\w+/ - * r2 = Regexp.new('cat', true) #=> /cat/i - * r3 = Regexp.new(r2) #=> /cat/i - * r4 = Regexp.new('dog', Regexp::EXTENDED | Regexp::IGNORECASE) #=> /dog/x + * r1 = Regexp.new('^a-z+:\\s+\w+') #=> /^a-z+:\s+\w+/ + * r2 = Regexp.new('cat', true) #=> /cat/i + * r3 = Regexp.new(r2) #=> /cat/i + * r4 = Regexp.new('dog', Regexp::EXTENDED | Regexp::IGNORECASE) #=> /dog/ix */ static VALUE