Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/google/googletest.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDino Radaković <dinor@google.com>2021-09-28 23:49:28 +0300
committerGitHub <noreply@github.com>2021-09-28 23:49:28 +0300
commitd558af2ab28093ef6338db28bb699f09abd6c1d7 (patch)
tree4ccbeacc454a7b85580ca6217dfcfeac8025d9d3
parentd3b84d6f8c1dfbc2a09627a000fbc7f83a2f0ac5 (diff)
Add placeholder text close to end of file
-rw-r--r--docs/reference/matchers.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/reference/matchers.md b/docs/reference/matchers.md
index 47d2808c..c25c5a85 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` evaluates to true, else matches `m2`.|
+| `Conditional(cond, m1, m2)` | Matches matcher `m1` if `cond` evalutes to true, else matches `m2`.|
## Adapters for Matchers
@@ -269,7 +269,7 @@ which must be a permanent callback.
**Notes:**
-1. The `MATCHER*` macros cannot be used inside a function or class.
+1. The `MATCHER*` macros cannot be used inside a function or class. foo
2. The matcher body must be *purely functional* (i.e. it cannot have any side
effect, and the result must not depend on anything other than the value
being matched and the matcher parameters).