aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGennadiy Civil <gennadiycivil@users.noreply.github.com>2017-10-15 19:14:33 -0700
committerGitHub <noreply@github.com>2017-10-15 19:14:33 -0700
commit963932e7f37b2dff8d122376fa1c54909d34676a (patch)
tree92843d6b41357433cb7cb2edeb6473a33f158642
parent7b6561c56e353100aca8458d7bc49c4e0119bae8 (diff)
parentecb1c3ddb6cf7d7df10bfbafdd374ca3d412992b (diff)
downloadgoogletest-963932e7f37b2dff8d122376fa1c54909d34676a.tar.gz
googletest-963932e7f37b2dff8d122376fa1c54909d34676a.tar.bz2
googletest-963932e7f37b2dff8d122376fa1c54909d34676a.zip
Merge pull request #1292 from DariuszOstolski/master
#1282: Doc typo fix
-rw-r--r--googlemock/docs/CheatSheet.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/googlemock/docs/CheatSheet.md b/googlemock/docs/CheatSheet.md
index c94c2dac..c6367fdd 100644
--- a/googlemock/docs/CheatSheet.md
+++ b/googlemock/docs/CheatSheet.md
@@ -65,7 +65,7 @@ can specify it by appending `_WITH_CALLTYPE` to any of the macros
described in the previous two sections and supplying the calling
convention as the first argument to the macro. For example,
```
- MOCK_METHOD_1_WITH_CALLTYPE(STDMETHODCALLTYPE, Foo, bool(int n));
+ MOCK_METHOD1_WITH_CALLTYPE(STDMETHODCALLTYPE, Foo, bool(int n));
MOCK_CONST_METHOD2_WITH_CALLTYPE(STDMETHODCALLTYPE, Bar, int(double x, double y));
```
where `STDMETHODCALLTYPE` is defined by `<objbase.h>` on Windows.