diff options
author | Abseil Team <absl-team@google.com> | 2022-11-05 08:07:00 (GMT) |
---|---|---|
committer | Copybara-Service <copybara-worker@google.com> | 2022-11-05 08:07:38 (GMT) |
commit | a4f02ef38981350c9d673b9909559c7a86420d7a (patch) | |
tree | 072bd6509119865c49ca2fc133c88c1a5bb1f69d /googletest | |
parent | 66366cea569337c53c7ef1c72f84b566746e465e (diff) | |
download | googletest-a4f02ef38981350c9d673b9909559c7a86420d7a.zip googletest-a4f02ef38981350c9d673b9909559c7a86420d7a.tar.gz googletest-a4f02ef38981350c9d673b9909559c7a86420d7a.tar.bz2 |
Fix typo in documentation of ConvertGenerator()
PiperOrigin-RevId: 486316328
Change-Id: I91d5d5ba1aaf4a4ab14019c8963e7fe181722f95
Diffstat (limited to 'googletest')
-rw-r--r-- | googletest/include/gtest/gtest-param-test.h | 2 |
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: |