aboutsummaryrefslogtreecommitdiffstats
path: root/googletest/docs
diff options
context:
space:
mode:
authorGennadiy Civil <misterg@google.com>2019-07-18 13:32:59 -0400
committerGennadiy Civil <misterg@google.com>2019-07-18 13:32:59 -0400
commita743249a5534eb57d3f5b4b0bb6d51b8dd2d5c68 (patch)
tree82ff5ab0076f6a8b1295101b1642ce8d042b4bf2 /googletest/docs
parent15756aa0c88591c10108e740ad3096a3af966242 (diff)
downloadgoogletest-a743249a5534eb57d3f5b4b0bb6d51b8dd2d5c68.tar.gz
googletest-a743249a5534eb57d3f5b4b0bb6d51b8dd2d5c68.tar.bz2
googletest-a743249a5534eb57d3f5b4b0bb6d51b8dd2d5c68.zip
Manual docs tweaks still in preparation for including docs with code pushes
Diffstat (limited to 'googletest/docs')
-rw-r--r--googletest/docs/advanced.md2
-rw-r--r--googletest/docs/primer.md2
2 files changed, 2 insertions, 2 deletions
diff --git a/googletest/docs/advanced.md b/googletest/docs/advanced.md
index 146c6e8a..ac7e6890 100644
--- a/googletest/docs/advanced.md
+++ b/googletest/docs/advanced.md
@@ -385,7 +385,7 @@ using ::testing::StartsWith;
```
Read this
-[recipe](https://github.com/google/googletest/blob/master/googlemock/docs/cook_book.md#using-matchers-in-googletest-assertions)
+[recipe](../../googlemock/docs/cook_book.md#using-matchers-in-googletest-assertions)
in the gMock Cookbook for more details.
gMock has a rich set of matchers. You can do many things googletest cannot do
diff --git a/googletest/docs/primer.md b/googletest/docs/primer.md
index ba17ce85..388df3b5 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