diff options
author | Steven Santos Erenst <stevenerenst@gmail.com> | 2018-08-29 04:03:19 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-29 04:03:19 (GMT) |
commit | ca912f8b7000268da4ae37d68eda3b9b513d63ef (patch) | |
tree | 5e964310c8581c00dcf874ace68e9b419ea1e466 /googletest | |
parent | 58f3f1005cffce8a9d005d0361d3471cd9947501 (diff) | |
download | googletest-ca912f8b7000268da4ae37d68eda3b9b513d63ef.zip googletest-ca912f8b7000268da4ae37d68eda3b9b513d63ef.tar.gz googletest-ca912f8b7000268da4ae37d68eda3b9b513d63ef.tar.bz2 |
Fix broken FAQ link in primer.mdrefs/pull/1794/head
The current link pointed to a non existing section in the FAQ.
Diffstat (limited to 'googletest')
-rw-r--r-- | googletest/docs/primer.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/googletest/docs/primer.md b/googletest/docs/primer.md index 02dea42..7a8ea8d 100644 --- a/googletest/docs/primer.md +++ b/googletest/docs/primer.md @@ -317,7 +317,7 @@ To create a fixture: 1. If necessary, write a destructor or `TearDown()` function to release any resources you allocated in `SetUp()` . To learn when you should use the constructor/destructor and when you should use `SetUp()/TearDown()`, read - this [FAQ](faq.md#should-i-use-the-constructordestructor-of-the-test-fixture-or-the-set-uptear-down-function) entry. + this [FAQ](faq.md#should-i-use-the-constructordestructor-of-the-test-fixture-or-setupteardown) entry. 1. If needed, define subroutines for your tests to share. When using a fixture, use `TEST_F()` instead of `TEST()` as it allows you to |