summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDino Radakovic <dinor@google.com>2022-01-14 22:40:07 (GMT)
committerCopybara-Service <copybara-worker@google.com>2022-01-14 22:40:35 (GMT)
commit4e9fe30884414b58d219d0170d39cbad96e5758a (patch)
tree3e851cdeb9d8e769d0698d8851b3cc60482c1f42
parent4e82924686d6f90b5bbf971b5a0b9995086df8cb (diff)
downloadgoogletest-4e9fe30884414b58d219d0170d39cbad96e5758a.zip
googletest-4e9fe30884414b58d219d0170d39cbad96e5758a.tar.gz
googletest-4e9fe30884414b58d219d0170d39cbad96e5758a.tar.bz2
Fix reference to source file in gmock FAQ
PiperOrigin-RevId: 421915817 Change-Id: I22800e8943f9eb050304c521701d4040b1b7a914
-rw-r--r--docs/gmock_faq.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/gmock_faq.md b/docs/gmock_faq.md
index 2cd9b3f..8f220bf 100644
--- a/docs/gmock_faq.md
+++ b/docs/gmock_faq.md
@@ -369,8 +369,8 @@ Usually, if your action is for a particular function type, defining it using
different types (e.g. if you are defining `Return(*value*)`),
`MakePolymorphicAction()` is easiest. Sometimes you want precise control on what
types of functions the action can be used in, and implementing `ActionInterface`
-is the way to go here. See the implementation of `Return()` in
-`testing/base/public/gmock-actions.h` for an example.
+is the way to go here. See the implementation of `Return()` in `gmock-actions.h`
+for an example.
### I use SetArgPointee() in WillOnce(), but gcc complains about "conflicting return type specified". What does it mean?