changelog: fix typo

This commit is contained in:
Andrew Gallant
2018-08-29 18:46:34 -04:00
parent c41b353009
commit 3edeeca6e9

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: