aboutsummaryrefslogtreecommitdiffstats
path: root/googletest/docs
diff options
context:
space:
mode:
authorGennadiy Civil <gennadiycivil@users.noreply.github.com>2019-01-30 14:44:27 -0500
committerGitHub <noreply@github.com>2019-01-30 14:44:27 -0500
commitacde02c635f8b94c7f44c017546f5d833a675312 (patch)
treee4de3ee050599250081ee6f47c2c6113fc7e6069 /googletest/docs
parent8e37822b4b216434eac1173a19ecd0dd1390a99a (diff)
downloadgoogletest-acde02c635f8b94c7f44c017546f5d833a675312.tar.gz
googletest-acde02c635f8b94c7f44c017546f5d833a675312.tar.bz2
googletest-acde02c635f8b94c7f44c017546f5d833a675312.zip
Repeat #2090
Testing
Diffstat (limited to 'googletest/docs')
-rw-r--r--googletest/docs/advanced.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/googletest/docs/advanced.md b/googletest/docs/advanced.md
index dbe6694a..acb7f240 100644
--- a/googletest/docs/advanced.md
+++ b/googletest/docs/advanced.md
@@ -1198,7 +1198,7 @@ also supports per-test-suite set-up/tear-down. To use it:
1. Outside your test fixture class (typically just below it), define those
member variables, optionally giving them initial values.
1. In the same test fixture class, define a `static void SetUpTestSuite()`
- function (remember not to spell it as **`SetUpTestSuite`** with a small `u`!)
+ function (remember not to spell it as **`SetupTestSuite`** with a small `u`!)
to set up the shared resources and a `static void TearDownTestSuite()`
function to tear them down.