summaryrefslogtreecommitdiff
path: root/docs/gmock_for_dummies.md
diff options
context:
space:
mode:
authorAbseil Team <absl-team@google.com>2021-04-27 16:22:33 -0400
committerDerek Mauro <dmauro@google.com>2021-04-29 10:40:29 -0400
commit680a5aa337d655b916e9048fe8f2ff69e9d4998a (patch)
tree263a2fa805ac7a6ce77da4a0245d0cba60e02548 /docs/gmock_for_dummies.md
parent719fd2d36fdf98d14ae15618c96d445e7fe00843 (diff)
downloadgoogletest-git-680a5aa337d655b916e9048fe8f2ff69e9d4998a.tar.gz
Googletest export
Move matchers reference from cheat sheet into its own document PiperOrigin-RevId: 370749693
Diffstat (limited to 'docs/gmock_for_dummies.md')
-rw-r--r--docs/gmock_for_dummies.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/gmock_for_dummies.md b/docs/gmock_for_dummies.md
index 6e41cafe..370f17e1 100644
--- a/docs/gmock_for_dummies.md
+++ b/docs/gmock_for_dummies.md
@@ -371,8 +371,8 @@ convenient way of saying "any value".
In the above examples, `100` and `50` are also matchers; implicitly, they are
the same as `Eq(100)` and `Eq(50)`, which specify that the argument must be
equal (using `operator==`) to the matcher argument. There are many
-[built-in matchers](gmock_cheat_sheet.md#MatcherList) for common types (as well
-as [custom matchers](gmock_cook_book.md#NewMatchers)); for example:
+[built-in matchers](reference/matchers.md) for common types (as well as
+[custom matchers](gmock_cook_book.md#NewMatchers)); for example:
```cpp
using ::testing::Ge;