From 6c0c8a7ea5e276ac0a5ab36c9bae9257f4ac4d0c Mon Sep 17 00:00:00 2001 From: Nico Weber Date: Mon, 15 May 2017 17:12:19 -0400 Subject: [PATCH] Fixing typo in documentation. This upstreams a Google-internal change. --- googletest/include/gtest/gtest.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;