aboutsummaryrefslogtreecommitdiffstats
path: root/googletest/docs
diff options
context:
space:
mode:
authorArkady Shapkin <arkady.shapkin@gmail.com>2018-09-04 23:07:18 +0300
committerArkady Shapkin <arkady.shapkin@gmail.com>2018-09-04 23:07:18 +0300
commite6c407d605c9887dcffc395f93aa33f8685ff035 (patch)
tree95933e9bf5e6919bdcf806bf920d47467e895d45 /googletest/docs
parenta2b149b2398b4954e40df947c54297f266a8a194 (diff)
downloadgoogletest-e6c407d605c9887dcffc395f93aa33f8685ff035.tar.gz
googletest-e6c407d605c9887dcffc395f93aa33f8685ff035.tar.bz2
googletest-e6c407d605c9887dcffc395f93aa33f8685ff035.zip
Fix doc links
Diffstat (limited to 'googletest/docs')
-rw-r--r--googletest/docs/advanced.md4
-rw-r--r--googletest/docs/faq.md2
-rw-r--r--googletest/docs/primer.md2
-rw-r--r--googletest/docs/samples.md2
4 files changed, 5 insertions, 5 deletions
diff --git a/googletest/docs/advanced.md b/googletest/docs/advanced.md
index 8065d196..b8bb5cd9 100644
--- a/googletest/docs/advanced.md
+++ b/googletest/docs/advanced.md
@@ -150,7 +150,7 @@ c is 10
>
> 1. If you see a compiler error "no matching function to call" when using
> `ASSERT_PRED*` or `EXPECT_PRED*`, please see
-> [this](faq.md#OverloadedPredicate) for how to resolve it.
+> [this](faq.md#the-compiler-complains-no-matching-function-to-call-when-i-use-assert_pred-how-do-i-fix-it) for how to resolve it.
> 1. Currently we only provide predicate assertions of arity <= 5. If you need
> a higher-arity assertion, let [us](https://github.com/google/googletest/issues) know.
@@ -423,7 +423,7 @@ and you're ready to go.
### More String Assertions
-(Please read the [previous](#AssertThat) section first if you haven't.)
+(Please read the [previous](#asserting-using-gmock-matchers) section first if you haven't.)
You can use the gMock [string matchers](../../googlemock/docs/CheatSheet.md#string-matchers)
with `EXPECT_THAT()` or `ASSERT_THAT()` to do more string comparison tricks
diff --git a/googletest/docs/faq.md b/googletest/docs/faq.md
index 7d42ff7d..54584548 100644
--- a/googletest/docs/faq.md
+++ b/googletest/docs/faq.md
@@ -131,7 +131,7 @@ In August 2008 we had to switch the default death test style from `fast` to
default. This caused many death tests to slow down. Unfortunately this change
was necessary.
-Please read [Fixing Failing Death Tests](death_test_styles.md) for what you can
+Please read [Fixing Failing Death Tests](advanced.md#death-test-styles) for what you can
do.
## I got some run-time errors about invalid proto descriptors when using `ProtocolMessageEquals`. Help!
diff --git a/googletest/docs/primer.md b/googletest/docs/primer.md
index 7ddd00ec..a7d4f90e 100644
--- a/googletest/docs/primer.md
+++ b/googletest/docs/primer.md
@@ -198,7 +198,7 @@ objects, you should use `ASSERT_EQ`.
When doing pointer comparisons use `*_EQ(ptr, nullptr)` and `*_NE(ptr, nullptr)`
instead of `*_EQ(ptr, NULL)` and `*_NE(ptr, NULL)`. This is because `nullptr` is
-typed while `NULL` is not. See [FAQ](faq.md#why-does-google-test-support-expect_eqnull-ptr-and-assert_eqnull-ptr-but-not-expect_nenull-ptr-and-assert_nenull-ptr)
+typed while `NULL` is not. See [FAQ](faq.md#why-does-googletest-support-expect_eqnull-ptr-and-assert_eqnull-ptr-but-not-expect_nenull-ptr-and-assert_nenull-ptr)
for more details.
If you're working with floating point numbers, you may want to use the floating
diff --git a/googletest/docs/samples.md b/googletest/docs/samples.md
index 18dcca38..eebdf371 100644
--- a/googletest/docs/samples.md
+++ b/googletest/docs/samples.md
@@ -1,4 +1,4 @@
-# Googletest Samples {#samples}
+# Googletest Samples
If you're like us, you'd like to look at [googletest
samples.](https://github.com/google/googletest/tree/master/googletest/samples)