1
0
mirror of https://github.com/BurntSushi/ripgrep.git synced 2024-12-12 19:18:24 +02:00

changelog: fix typo

This commit is contained in:
Andrew Gallant 2018-08-29 18:46:34 -04:00
parent c41b353009
commit 3edeeca6e9
No known key found for this signature in database
GPG Key ID: B2E3A4923F8B0D44

View File

@ -18,9 +18,8 @@ format.
* The match semantics of `-w/--word-regexp` have changed slightly. They used * The match semantics of `-w/--word-regexp` have changed slightly. They used
to be `\b(?:<your pattern>)\b`, but now it's to be `\b(?:<your pattern>)\b`, but now it's
`(?:^|\W)(?:<your pattern>)(?:$|\W)`. This matches the behavior of GNU grep `(?:^|\W)(?:<your pattern>)(?:$|\W)`. This matches the behavior of GNU grep
and is believe to be closer to the intended semantics of the flag. and is believed to be closer to the intended semantics of the flag. See
See [#389](https://github.com/BurntSushi/ripgrep/issues/389) for more [#389](https://github.com/BurntSushi/ripgrep/issues/389) for more details.
details.
Feature enhancements: Feature enhancements: