aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGennadiy Civil <misterg@google.com>2019-08-02 14:16:52 -0400
committerGennadiy Civil <misterg@google.com>2019-08-02 14:16:53 -0400
commit4e29e48840e611ecbef33d10960d7480d2e9034a (patch)
treeffa2dbe6b6d63b5da8a23c040e3d9af2984a65df
parent6c7a8bec8d4493124f593640079d35ee0172d683 (diff)
parent96c851d051c154257e6a0f263fdd9dc7e1e58203 (diff)
downloadgoogletest-4e29e48840e611ecbef33d10960d7480d2e9034a.tar.gz
googletest-4e29e48840e611ecbef33d10960d7480d2e9034a.tar.bz2
googletest-4e29e48840e611ecbef33d10960d7480d2e9034a.zip
Merge pull request #2358 from kuzkry:adjustment-of-similar-comments
PiperOrigin-RevId: 261355792
-rw-r--r--googletest/include/gtest/gtest-typed-test.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/googletest/include/gtest/gtest-typed-test.h b/googletest/include/gtest/gtest-typed-test.h
index b3319f68..25c26134 100644
--- a/googletest/include/gtest/gtest-typed-test.h
+++ b/googletest/include/gtest/gtest-typed-test.h
@@ -65,9 +65,9 @@ TYPED_TEST_SUITE(FooTest, MyTypes);
// Then, use TYPED_TEST() instead of TEST_F() to define as many typed
// tests for this test suite as you want.
TYPED_TEST(FooTest, DoesBlah) {
- // Inside a test, refer to TypeParam to get the type parameter.
- // Since we are inside a derived class template, C++ requires use to
- // visit the members of FooTest via 'this'.
+ // Inside a test, refer to the special name TypeParam to get the type
+ // parameter. Since we are inside a derived class template, C++ requires
+ // us to visit the members of FooTest via 'this'.
TypeParam n = this->value_;
// To visit static members of the fixture, add the TestFixture::