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).