Skip to content

Commit

Permalink
readme: visually emphasize performance criteria difference
Browse files Browse the repository at this point in the history
There was only a slight wording difference between these two
points, and it was easy to gloss over. So we emphasize that
wording difference to make it a bit easier to notice.

PR #1082
  • Loading branch information
jqnatividad committed Sep 7, 2023
1 parent 8275c1b commit 061ee81
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -233,10 +233,10 @@ nebulous. While nebulous, it guides this crate's architecture and the sorts of
the trade offs it makes. For example, here are some general architectural
statements that follow as a result of the goal to be "fast":

* When given the choice between faster regex searches and faster Rust compile
times, this crate will generally choose faster regex searches.
* When given the choice between faster regex searches and faster regex compile
times, this crate will generally choose faster regex searches. That is, it is
* When given the choice between faster regex searches and faster _Rust compile
times_, this crate will generally choose faster regex searches.
* When given the choice between faster regex searches and faster _regex compile
times_, this crate will generally choose faster regex searches. That is, it is
generally acceptable for `Regex::new` to get a little slower if it means that
searches get faster. (This is a somewhat delicate balance to strike, because
the speed of `Regex::new` needs to remain somewhat reasonable. But this is why
Expand Down

0 comments on commit 061ee81

Please sign in to comment.