summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAbseil Team <absl-team@google.com>2022-11-05 08:07:00 (GMT)
committerCopybara-Service <copybara-worker@google.com>2022-11-05 08:07:38 (GMT)
commita4f02ef38981350c9d673b9909559c7a86420d7a (patch)
tree072bd6509119865c49ca2fc133c88c1a5bb1f69d
parent66366cea569337c53c7ef1c72f84b566746e465e (diff)
downloadgoogletest-a4f02ef38981350c9d673b9909559c7a86420d7a.zip
googletest-a4f02ef38981350c9d673b9909559c7a86420d7a.tar.gz
googletest-a4f02ef38981350c9d673b9909559c7a86420d7a.tar.bz2
Fix typo in documentation of ConvertGenerator()
PiperOrigin-RevId: 486316328 Change-Id: I91d5d5ba1aaf4a4ab14019c8963e7fe181722f95
-rw-r--r--googletest/include/gtest/gtest-param-test.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/googletest/include/gtest/gtest-param-test.h b/googletest/include/gtest/gtest-param-test.h
index 10d6a07..1adb9a7 100644
--- a/googletest/include/gtest/gtest-param-test.h
+++ b/googletest/include/gtest/gtest-param-test.h
@@ -407,7 +407,7 @@ internal::CartesianProductHolder<Generator...> Combine(const Generator&... g) {
return internal::CartesianProductHolder<Generator...>(g...);
}
-// ConvertGenerator() wraps a parameter generator in order to cast each prduced
+// ConvertGenerator() wraps a parameter generator in order to cast each produced
// value through a known type before supplying it to the test suite
//
// Synopsis: