aboutsummaryrefslogtreecommitdiffstats
path: root/googlemock/docs/for_dummies.md
diff options
context:
space:
mode:
authorChris Baish <chris.baish@gmail.com>2019-07-19 07:12:46 +0100
committerChris Baish <chris.baish@gmail.com>2019-07-19 07:12:46 +0100
commitd64e4cf14e488f10374df7548513667e4fba6399 (patch)
treebd46a4241847510b22d81672e65fb22dbe003e53 /googlemock/docs/for_dummies.md
parentadb490773e8d5f8a84e863f4bd6d96a707750093 (diff)
parentb77e5c76252bac322bb82c5b444f050bd0d92451 (diff)
downloadgoogletest-d64e4cf14e488f10374df7548513667e4fba6399.tar.gz
googletest-d64e4cf14e488f10374df7548513667e4fba6399.tar.bz2
googletest-d64e4cf14e488f10374df7548513667e4fba6399.zip
Merge remote-tracking branch 'upstream/master' into primer_md_table_update
Diffstat (limited to 'googlemock/docs/for_dummies.md')
-rw-r--r--googlemock/docs/for_dummies.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/googlemock/docs/for_dummies.md b/googlemock/docs/for_dummies.md
index b75c9a09..5433e8b3 100644
--- a/googlemock/docs/for_dummies.md
+++ b/googlemock/docs/for_dummies.md
@@ -1,6 +1,6 @@
## Googletest Mocking (gMock) for Dummies {#GMockForDummies}
-<!-- GOOGLETEST_CM0012 DO NOT DELETE -->
+<!-- GOOGLETEST_CM0013 DO NOT DELETE -->
### What Is gMock?
@@ -499,7 +499,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_CM0011 DO NOT DELETE -->).
+[cook book](http://<!-- GOOGLETEST_CM0012 DO NOT DELETE -->).
Time for another quiz! What do you think the following means?