aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Barolak <mbar@google.com>2019-12-02 16:41:45 -0500
committerMark Barolak <mbar@google.com>2019-12-02 16:41:45 -0500
commit11a9482f84ac856e322bad93f02356e0cd75a842 (patch)
treed07a40eac3214cba1da20c415664754b6a80430e
parentb155875f32dc74e293d96c0de2dfcdfa913804e4 (diff)
parentb8a92f7c86e4bb686bc47bef6dba418b3588e964 (diff)
downloadgoogletest-11a9482f84ac856e322bad93f02356e0cd75a842.tar.gz
googletest-11a9482f84ac856e322bad93f02356e0cd75a842.tar.bz2
googletest-11a9482f84ac856e322bad93f02356e0cd75a842.zip
Merge pull request #2607 from oyefremov:patch-1
PiperOrigin-RevId: 283349621
-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 63f05168..f581d77a 100644
--- a/googletest/docs/primer.md
+++ b/googletest/docs/primer.md
@@ -261,7 +261,7 @@ TEST(TestSuiteName, TestName) {
`TEST()` arguments go from general to specific. The *first* argument is the name
of the test suite, and the *second* argument is the test's name within the test
-case. Both names must be valid C++ identifiers, and they should not contain
+suite. Both names must be valid C++ identifiers, and they should not contain
any underscores (`_`). A test's *full name* consists of its containing test suite and
its individual name. Tests from different test suites can have the same
individual name.