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-29 00:08:17 +0300
committerGitHub <noreply@github.com>2021-09-29 00:08:17 +0300
commit74ebc58ec49bbfb8fca7787231312fda6e9fa119 (patch)
tree584a444c80b0d94deb15051457fa749a76c97a68
parent0876db75339c86fd55c8868939d67696efaa377c (diff)
Update matchers.mddinord-patch-1
-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 a5109d98..a541bf8d 100644
--- a/docs/reference/matchers.md
+++ b/docs/reference/matchers.md
@@ -261,7 +261,7 @@ which must be a permanent callback.
## Defining Matchers
-| Macro foo | Description |
+| Macro | Description |
| :----------------------------------- | :------------------------------------ |
| `MATCHER(IsEven, "") { return (arg % 2) == 0; }` | Defines a matcher `IsEven()` to match an even number. |
| `MATCHER_P(IsDivisibleBy, n, "") { *result_listener << "where the remainder is " << (arg % n); return (arg % n) == 0; }` | Defines a matcher `IsDivisibleBy(n)` to match a number divisible by `n`. |