jlamberg (Jarno Lamberg)
- Login: jlamberg
- Email: jarno.lamberg@iki.fi
- Registered on: 11/13/2011
- Last sign in: 11/13/2011
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
11/16/2011
-
05:58 AM Ruby Bug #5624: Mismatch between code example and its description in text in Regexp documentation
- 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:
https://github.com/ruby/ruby/pull/57
11/13/2011
-
08:02 AM Ruby Bug #5624 (Closed): Mismatch between code example and its description in text in Regexp documentation
- 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'
#=> "aaaaaaaa...