Actions
Bug #5624
closedMismatch between code example and its description in text in Regexp documentation
Description
I found that in Regexp.html (doc/re.rdoc) under the heading Performance there is the description:
"Consider a string of 25 as, a d, 4 as, and a c."
with a code example:
s = 'a' * 25 + 'd' 'a' * 4 + 'c'
#=> "aaaaaaaaaaaaaaaaaaaaaaaaadadadadac"
The code example doesn't match its description.
I fixed that with the attached patch.
Files
Updated by jlamberg (Jarno Lamberg) almost 13 years ago
I committed the change to GitHub and made a pull request, too, as I was not sure which way would work better.
The link to the pull request is:
Updated by drbrain (Eric Hodel) almost 13 years ago
- Status changed from Open to Closed
- % Done changed from 0 to 100
This issue was solved with changeset r33976.
Jarno, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
- doc/re.rdoc: Fix example code to match documentation. Patch by
Jarno Lamberg. [Ruby 1.9 - Bug #5624]
Actions
Like0
Like0Like0