Skip to content

Commit 8bc59f4

Browse files
committed
Remove old 'bug' from README, as now fixed
1 parent e6c1f1c commit 8bc59f4

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

README.md

+3-4
Original file line numberDiff line numberDiff line change
@@ -180,13 +180,12 @@ For instance, the following takes no more than ~ 1 second on my machine:
180180
There are no known major bugs with this library. However, there are a few obscure issues that you *may* encounter:
181181

182182
* Conditional capture groups, e.g. `/(group1)? (?(1)yes|no)/.examples` are not yet supported. (This example *should* return: `["group1 yes", " no"]`)
183-
* `\Z` should be interpreted like `\n?\z`; it's currently just interpreted like `\z`. (This basically just means you'll be missing a few examples.)
184-
* Ideally, `regexp#examples` should always return up to `max_results_limit`. Currenty, it usually "aborts" before this limit is reached.
185-
(I.e. the exact number of examples generated can be hard to predict, for complex patterns.)
186183
* Nested repeat operators are incorrectly parsed, e.g. `/b{2}{3}/` - which *should* be interpreted like `/b{6}/`. (However, there is probably no reason
187184
to ever write regexes like this!)
188185
* A new ["absent operator" (`/(?~exp)/`)](https://medium.com/rubyinside/the-new-absent-operator-in-ruby-s-regular-expressions-7c3ef6cd0b99)
189-
was added to Ruby version `2.4.0`. This gem does not yet support (or gracefully fail) when used.
186+
was added to Ruby version `2.4.1`. This gem does not yet support it (or gracefully fail when used).
187+
* Ideally, `regexp#examples` should always return up to `max_results_limit`. Currenty, it usually "aborts" before this limit is reached.
188+
(I.e. the exact number of examples generated can be hard to predict, for complex patterns.)
190189

191190
Some of the most obscure regexp features are not even mentioned in [the ruby docs](http://ruby-doc.org/core/Regexp.html).
192191
However, full documentation on all the intricate obscurities in the ruby (version 2.x) regexp parser can be found

0 commit comments

Comments
 (0)