Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Document that for "usual" regex behavior
multiline
is required
Regular expression users typically expect that matching a `$` in a multiline string would match the end of current line and not the end of the string past many lines. This is default behavior in pretty much every regexp engine: `grep`, `perl`, text editors, you name it… So it is fair to expect such expectation, so warn a user about necessity to pass `multiline` Fixes: #231
- Loading branch information