From 69b3b54f3c650d48a0529bc60c07ed9ef89de4c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dino=20Radakovi=C4=87?= Date: Tue, 28 Sep 2021 16:58:21 -0400 Subject: [PATCH] Add placeholder a bit farther from the end --- docs/reference/matchers.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/reference/matchers.md b/docs/reference/matchers.md index c25c5a85..a5109d98 100644 --- a/docs/reference/matchers.md +++ b/docs/reference/matchers.md @@ -261,7 +261,7 @@ which must be a permanent callback. ## Defining Matchers -| Macro | Description | +| Macro foo | 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`. | @@ -269,7 +269,7 @@ which must be a permanent callback. **Notes:** -1. The `MATCHER*` macros cannot be used inside a function or class. foo +1. The `MATCHER*` macros cannot be used inside a function or class. 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).