summaryrefslogtreecommitdiffstats
path: root/googletest/src/gtest-internal-inl.h
diff options
context:
space:
mode:
authoryutotnh <57719497+yutotnh@users.noreply.github.com>2022-07-01 09:32:49 (GMT)
committeryutotnh <57719497+yutotnh@users.noreply.github.com>2022-07-01 09:32:49 (GMT)
commit2cf9987ce3510de36640dcabd3d53db2c09312f6 (patch)
treecfb462878098f907a941a9122476d633eb36bbc0 /googletest/src/gtest-internal-inl.h
parent96f51426e4c776a71d0a446c1e4f4c7a5ea921df (diff)
downloadgoogletest-2cf9987ce3510de36640dcabd3d53db2c09312f6.zip
googletest-2cf9987ce3510de36640dcabd3d53db2c09312f6.tar.gz
googletest-2cf9987ce3510de36640dcabd3d53db2c09312f6.tar.bz2
fix: some typos in comment
Diffstat (limited to 'googletest/src/gtest-internal-inl.h')
-rw-r--r--googletest/src/gtest-internal-inl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/googletest/src/gtest-internal-inl.h b/googletest/src/gtest-internal-inl.h
index 0b9e929..ffe5322 100644
--- a/googletest/src/gtest-internal-inl.h
+++ b/googletest/src/gtest-internal-inl.h
@@ -507,9 +507,9 @@ class GTEST_API_ UnitTestImpl {
virtual ~UnitTestImpl();
// There are two different ways to register your own TestPartResultReporter.
- // You can register your own repoter to listen either only for test results
+ // You can register your own reporter to listen either only for test results
// from the current thread or for results from all threads.
- // By default, each per-thread test result repoter just passes a new
+ // By default, each per-thread test result reporter just passes a new
// TestPartResult to the global test result reporter, which registers the
// test part result for the currently running test.