summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDino Radaković <dinor@google.com>2021-10-13 11:57:59 -0400
committerGitHub <noreply@github.com>2021-10-13 11:57:59 -0400
commit467949d59bb0a6fab8c262e17e69622badc3cf6a (patch)
treedaaf92c313ba6a6f959b3bba7020d34ac4c2ee9f
parent075810f7a20405ea09a93f68847d6e963212fa62 (diff)
downloadgoogletest-git-dinord-patch-2.tar.gz
Insert placeholder into matchers.mddinord-patch-2
-rw-r--r--docs/reference/matchers.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/reference/matchers.md b/docs/reference/matchers.md
index 47d2808c..2cc3d1d3 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` evaluates FOO PLACEHOLDER VANDALISM to true, else matches `m2`.|
## Adapters for Matchers