summaryrefslogtreecommitdiff
path: root/googletest/docs
diff options
context:
space:
mode:
authoraribibek <59134746+aribibek@users.noreply.github.com>2020-02-06 18:41:20 +0600
committerGitHub <noreply@github.com>2020-02-06 18:41:20 +0600
commit461bd03fc718c7e7ac3d30336d024d9a75e18810 (patch)
treedaae31edc546c81d7835f2c113dea27847d174b4 /googletest/docs
parent10b1902d893ea8cc43c69541d70868f91af3646b (diff)
downloadgoogletest-git-461bd03fc718c7e7ac3d30336d024d9a75e18810.tar.gz
fix a link to documentation
fix a documentation link on "how to customize the printing of the arguments"
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