diff options
author | Nico Weber <thakis@chromium.org> | 2017-05-15 17:12:19 -0400 |
---|---|---|
committer | Nico Weber <thakis@chromium.org> | 2017-05-15 17:12:19 -0400 |
commit | 6c0c8a7ea5e276ac0a5ab36c9bae9257f4ac4d0c (patch) | |
tree | 1a2fab0f3e5ba7a9984fc1e05e651f2f05ea9121 | |
parent | 294f72bc773c92410aa3c5ecdd6cd4a757c3fbf4 (diff) | |
download | googletest-6c0c8a7ea5e276ac0a5ab36c9bae9257f4ac4d0c.tar.gz googletest-6c0c8a7ea5e276ac0a5ab36c9bae9257f4ac4d0c.tar.bz2 googletest-6c0c8a7ea5e276ac0a5ab36c9bae9257f4ac4d0c.zip |
Fixing typo in documentation.
This upstreams a Google-internal change.
-rw-r--r-- | googletest/include/gtest/gtest.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/googletest/include/gtest/gtest.h b/googletest/include/gtest/gtest.h index a42aa2a4..4be677da 100644 --- a/googletest/include/gtest/gtest.h +++ b/googletest/include/gtest/gtest.h @@ -1287,7 +1287,7 @@ class GTEST_API_ UnitTest { internal::UnitTestImpl* impl() { return impl_; } const internal::UnitTestImpl* impl() const { return impl_; } - // These classes and funcions are friends as they need to access private + // These classes and functions are friends as they need to access private // members of UnitTest. friend class Test; friend class internal::AssertHelper; |