summaryrefslogtreecommitdiffstats
path: root/docs/gmock_for_dummies.md
diff options
context:
space:
mode:
authorAbseil Team <absl-team@google.com>2021-01-15 20:50:04 (GMT)
committerDerek Mauro <dmauro@google.com>2021-01-15 20:54:03 (GMT)
commitd128fc8252d53baad6ea456fa08cbf9028d255f4 (patch)
treef1735e03a01418b034916f446b8be3c48ad61408 /docs/gmock_for_dummies.md
parent5ae6e6e7e156a8a1cd83836ce2a0d95fb7acc8d1 (diff)
downloadgoogletest-d128fc8252d53baad6ea456fa08cbf9028d255f4.zip
googletest-d128fc8252d53baad6ea456fa08cbf9028d255f4.tar.gz
googletest-d128fc8252d53baad6ea456fa08cbf9028d255f4.tar.bz2
Googletest export
Fixes #3222, fixes #3225, closes #3223 PiperOrigin-RevId: 352066131
Diffstat (limited to 'docs/gmock_for_dummies.md')
-rw-r--r--docs/gmock_for_dummies.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/gmock_for_dummies.md b/docs/gmock_for_dummies.md
index 7bec29a..5676910 100644
--- a/docs/gmock_for_dummies.md
+++ b/docs/gmock_for_dummies.md
@@ -505,7 +505,7 @@ always return 100 as `n++` is only evaluated once. Similarly, `Return(new Foo)`
will create a new `Foo` object when the `EXPECT_CALL()` is executed, and will
return the same pointer every time. If you want the side effect to happen every
time, you need to define a custom action, which we'll teach in the
-[cook book](http://<!-- GOOGLETEST_CM0012 DO NOT DELETE -->).
+[cook book](gmock_cook_book.md).
Time for another quiz! What do you think the following means?