mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Document encoding of string returned by Regexp.quote [ci skip]
Also, remove documentation about returning self, which makes no sense as self would be the Regexp class. It could be interpreted as return the argument if no changes were made, but that hasn't been the behavior at least since 1.8.7 (and probably before). Fixes [Bug #10239]
This commit is contained in:
parent
c1ad6321b0
commit
32ec6dd5c7
1 changed files with 2 additions and 2 deletions
4
re.c
4
re.c
|
@ -3578,8 +3578,8 @@ rb_reg_quote(VALUE str)
|
|||
* Regexp.quote(str) -> string
|
||||
*
|
||||
* Escapes any characters that would have special meaning in a regular
|
||||
* expression. Returns a new escaped string, or self if no characters are
|
||||
* escaped. For any string,
|
||||
* expression. Returns a new escaped string with the same or compatible
|
||||
* encoding. For any string,
|
||||
* <code>Regexp.new(Regexp.escape(<i>str</i>))=~<i>str</i></code> will be true.
|
||||
*
|
||||
* Regexp.escape('\*?{}.') #=> \\\*\?\{\}\.
|
||||
|
|
Loading…
Add table
Reference in a new issue