mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Paranoia: /^/ -> /\A/ in regexp in rdoc. Pointed out by nobu.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@34836 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
f3e1c29b24
commit
9f0de403c5
1 changed files with 2 additions and 2 deletions
4
string.c
4
string.c
|
@ -6777,8 +6777,8 @@ rb_str_oct(VALUE str)
|
|||
* standard library function <code>crypt(3)</code> with the given
|
||||
* salt string. While the format and the result are system and
|
||||
* implementation dependent, using a salt matching the regular
|
||||
* expression <code>^[a-zA-Z0-9./]{2}</code> should be safe and valid
|
||||
* on any platform, in which only the first two characters are
|
||||
* expression <code>\A[a-zA-Z0-9./]{2}</code> should be valid and
|
||||
* safe on any platform, in which only the first two characters are
|
||||
* significant.
|
||||
*
|
||||
* This method is for use in system specific scripts, so if you want
|
||||
|
|
Loading…
Add table
Reference in a new issue