summaryrefslogtreecommitdiffstats
path: root/googletest
diff options
context:
space:
mode:
authorGennadiy Civil <gennadiycivil@users.noreply.github.com>2018-08-30 02:07:39 (GMT)
committerGitHub <noreply@github.com>2018-08-30 02:07:39 (GMT)
commit1db4a426d4f7809a4a54d0b804cd956e6d00e090 (patch)
tree7ab3ec2ca5369db0084ff71e572cb1707f1d76a2 /googletest
parentf1e529a808ffa52166dd2014372f56c440ed16c4 (diff)
parent3dbba3b072b1e67c5dc6793741da4b5408f8a552 (diff)
downloadgoogletest-1db4a426d4f7809a4a54d0b804cd956e6d00e090.zip
googletest-1db4a426d4f7809a4a54d0b804cd956e6d00e090.tar.gz
googletest-1db4a426d4f7809a4a54d0b804cd956e6d00e090.tar.bz2
Merge branch 'master' into 9A681768AABE08D1EFA5CA77528236A4
Diffstat (limited to 'googletest')
-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 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