summaryrefslogtreecommitdiffstats
path: root/googletest/include/gtest/internal/gtest-internal.h
diff options
context:
space:
mode:
authorChristian Clauss <cclauss@me.com>2021-09-24 06:09:32 (GMT)
committerChristian Clauss <cclauss@me.com>2021-09-24 06:09:32 (GMT)
commitee1be03b43dd78916a0a2118c6e31090fdaed286 (patch)
tree7329af52fdb033e73ab00f3699281e7f32b6f543 /googletest/include/gtest/internal/gtest-internal.h
parente4717df71a4f45bf9f0ac88c6cd9846a0bc248dd (diff)
downloadgoogletest-ee1be03b43dd78916a0a2118c6e31090fdaed286.zip
googletest-ee1be03b43dd78916a0a2118c6e31090fdaed286.tar.gz
googletest-ee1be03b43dd78916a0a2118c6e31090fdaed286.tar.bz2
Fix remaining typos discovered by codespellrefs/pull/3581/head
Diffstat (limited to 'googletest/include/gtest/internal/gtest-internal.h')
-rw-r--r--googletest/include/gtest/internal/gtest-internal.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/googletest/include/gtest/internal/gtest-internal.h b/googletest/include/gtest/internal/gtest-internal.h
index 02e0198..4e66667 100644
--- a/googletest/include/gtest/internal/gtest-internal.h
+++ b/googletest/include/gtest/internal/gtest-internal.h
@@ -508,11 +508,11 @@ inline SetUpTearDownSuiteFuncType GetNotDefaultOrNull(
template <typename T>
// Note that SuiteApiResolver inherits from T because
-// SetUpTestSuite()/TearDownTestSuite() could be protected. Ths way
+// SetUpTestSuite()/TearDownTestSuite() could be protected. This way
// SuiteApiResolver can access them.
struct SuiteApiResolver : T {
// testing::Test is only forward declared at this point. So we make it a
- // dependend class for the compiler to be OK with it.
+ // dependent class for the compiler to be OK with it.
using Test =
typename std::conditional<sizeof(T) != 0, ::testing::Test, void>::type;