aboutsummaryrefslogtreecommitdiffstats
path: root/googlemock/docs/CheatSheet.md
diff options
context:
space:
mode:
authorTanzinul Islam <tanzislam@users.noreply.github.com>2017-11-19 20:17:46 +0000
committerGitHub <noreply@github.com>2017-11-19 20:17:46 +0000
commit4ba3803f936a2f432e60841bc9358ea2f3a951eb (patch)
tree778e7ffd3bfda62cd3be3e01a2d0207d5ffe1d82 /googlemock/docs/CheatSheet.md
parent78b1ff074799c776f90a77203fcd7adc98e11736 (diff)
parentd175c8bf823e709d570772b038757fadf63bc632 (diff)
downloadgoogletest-4ba3803f936a2f432e60841bc9358ea2f3a951eb.tar.gz
googletest-4ba3803f936a2f432e60841bc9358ea2f3a951eb.tar.bz2
googletest-4ba3803f936a2f432e60841bc9358ea2f3a951eb.zip
Merge branch 'master' into fix_death_test_child_mingw_wer_issue1116
Diffstat (limited to 'googlemock/docs/CheatSheet.md')
-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.