Fix typos in the code base (#2206)

Note that only documentation and comments are impacted by this change.
This commit is contained in:
Julien Brianceau
2021-04-07 20:43:50 +02:00
committed by GitHub
parent a5abec9cb5
commit e8cdfdca87
6 changed files with 6 additions and 6 deletions

View File

@@ -101,7 +101,7 @@ string is equal to `str`.
Finally, the `Matches` matcher performs an ECMASCript regex match using
`str` against the argument string. It is important to know that
the match is performed agains the string as a whole, meaning that
the match is performed against the string as a whole, meaning that
the regex `"abc"` will not match input string `"abcd"`. To match
`"abcd"`, you need to use e.g. `"abc.*"` as your regex.