summaryrefslogtreecommitdiff
path: root/googletest/docs
diff options
context:
space:
mode:
authorDerek Mauro <dmauro@google.com>2020-05-28 19:54:19 -0400
committerDerek Mauro <dmauro@google.com>2020-05-28 19:54:19 -0400
commit99ea9ca3fedc03b87d62fd3326ed0f71d6ef749e (patch)
tree32709772221a9891f897ce406052e8f563f8ace2 /googletest/docs
parent6b08b41e5fac842918892d8c1398f8b008028822 (diff)
parent461bd03fc718c7e7ac3d30336d024d9a75e18810 (diff)
downloadgoogletest-git-99ea9ca3fedc03b87d62fd3326ed0f71d6ef749e.tar.gz
Merge pull request #2698 from aribibek:patch-1
PiperOrigin-RevId: 312342956
Diffstat (limited to 'googletest/docs')
-rw-r--r--googletest/docs/primer.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/googletest/docs/primer.md b/googletest/docs/primer.md
index f581d77a..2f459fd7 100644
--- a/googletest/docs/primer.md
+++ b/googletest/docs/primer.md
@@ -169,7 +169,7 @@ you'll get a compiler error. We used to require the arguments to support the
`<<` is supported, it will be called to print the arguments when the assertion
fails; otherwise googletest will attempt to print them in the best way it can.
For more details and how to customize the printing of the arguments, see the
-[documentation](../../googlemock/docs/cook_book.md#teaching-gmock-how-to-print-your-values).
+[documentation](./advanced.md#teaching-googletest-how-to-print-your-values).
These assertions can work with a user-defined type, but only if you define the
corresponding comparison operator (e.g., `==` or `<`). Since this is discouraged