diff options
author | Gennadiy Civil <gennadiycivil@users.noreply.github.com> | 2017-08-11 14:33:36 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-11 14:33:36 (GMT) |
commit | e533ff4bd33cca28079e26b49b4c913812bd7f33 (patch) | |
tree | ef2147abbfb2ed7bafea73808670da09731ab5cb /googlemock/docs | |
parent | e3bd4cbeaeef3cee65a68a8bd3c535cb779e9b6d (diff) | |
parent | bef93f32c1d23f402b4cd25664fc17a096c5f747 (diff) | |
download | googletest-e533ff4bd33cca28079e26b49b4c913812bd7f33.zip googletest-e533ff4bd33cca28079e26b49b4c913812bd7f33.tar.gz googletest-e533ff4bd33cca28079e26b49b4c913812bd7f33.tar.bz2 |
Merge pull request #926 from bartshappee/patch-1
Fix small typo in Cookbook: SeArrayArgument
Diffstat (limited to 'googlemock/docs')
-rw-r--r-- | googlemock/docs/CookBook.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/googlemock/docs/CookBook.md b/googlemock/docs/CookBook.md index 3d2ae4a..6ea7f3a 100644 --- a/googlemock/docs/CookBook.md +++ b/googlemock/docs/CookBook.md @@ -1682,7 +1682,7 @@ This also works when the argument is an output iterator: ``` using ::testing::_; -using ::testing::SeArrayArgument; +using ::testing::SetArrayArgument; class MockRolodex : public Rolodex { public: |