diff options
author | Christian Clauss <cclauss@me.com> | 2021-09-24 06:09:32 (GMT) |
---|---|---|
committer | Christian Clauss <cclauss@me.com> | 2021-09-24 06:09:32 (GMT) |
commit | ee1be03b43dd78916a0a2118c6e31090fdaed286 (patch) | |
tree | 7329af52fdb033e73ab00f3699281e7f32b6f543 /docs | |
parent | e4717df71a4f45bf9f0ac88c6cd9846a0bc248dd (diff) | |
download | googletest-ee1be03b43dd78916a0a2118c6e31090fdaed286.zip googletest-ee1be03b43dd78916a0a2118c6e31090fdaed286.tar.gz googletest-ee1be03b43dd78916a0a2118c6e31090fdaed286.tar.bz2 |
Fix remaining typos discovered by codespellrefs/pull/3581/head
Diffstat (limited to 'docs')
-rw-r--r-- | docs/reference/matchers.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/reference/matchers.md b/docs/reference/matchers.md index a541bf8..47d2808 100644 --- a/docs/reference/matchers.md +++ b/docs/reference/matchers.md @@ -238,7 +238,7 @@ You can make a matcher from one or more other matchers: | `AnyOf(m1, m2, ..., mn)` | `argument` matches at least one of the matchers `m1` to `mn`. | | `AnyOfArray({m0, m1, ..., mn})`, `AnyOfArray(a_container)`, `AnyOfArray(begin, end)`, `AnyOfArray(array)`, or `AnyOfArray(array, count)` | The same as `AnyOf()` except that the matchers come from an initializer list, STL-style container, iterator range, or C-style array. | | `Not(m)` | `argument` doesn't match matcher `m`. | -| `Conditional(cond, m1, m2)` | Matches matcher `m1` if `cond` evalutes to true, else matches `m2`.| +| `Conditional(cond, m1, m2)` | Matches matcher `m1` if `cond` evaluates to true, else matches `m2`.| ## Adapters for Matchers |