diff options
-rw-r--r-- | googletest/docs/advanced.md | 2 | ||||
-rw-r--r-- | googletest/docs/primer.md | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/googletest/docs/advanced.md b/googletest/docs/advanced.md index 146c6e8..ac7e689 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 ba17ce8..388df3b 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 |