summaryrefslogtreecommitdiffstats
path: root/googletest/docs/primer.md
diff options
context:
space:
mode:
authorChris Baish <chris.baish@gmail.com>2019-07-19 06:12:46 (GMT)
committerChris Baish <chris.baish@gmail.com>2019-07-19 06:12:46 (GMT)
commitd64e4cf14e488f10374df7548513667e4fba6399 (patch)
treebd46a4241847510b22d81672e65fb22dbe003e53 /googletest/docs/primer.md
parentadb490773e8d5f8a84e863f4bd6d96a707750093 (diff)
parentb77e5c76252bac322bb82c5b444f050bd0d92451 (diff)
downloadgoogletest-d64e4cf14e488f10374df7548513667e4fba6399.zip
googletest-d64e4cf14e488f10374df7548513667e4fba6399.tar.gz
googletest-d64e4cf14e488f10374df7548513667e4fba6399.tar.bz2
Merge remote-tracking branch 'upstream/master' into primer_md_table_update
Diffstat (limited to 'googletest/docs/primer.md')
-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 8f5c6e2..b8d48ba 100644
--- a/googletest/docs/primer.md
+++ b/googletest/docs/primer.md
@@ -164,7 +164,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
-[documentation](https://github.com/google/googletest/blob/master/googlemock/docs/cook_book.md#teaching-gmock-how-to-print-your-values)
+[documentation](../../googlemock/docs/cook_book.md#teaching-gmock-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. `==`, `<`, etc). Since this is