diff options
author | Josh Bodily <joshbodily@gmail.com> | 2017-12-12 10:36:37 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-12 10:36:37 -0700 |
commit | 3e2cb75446e0f56f226f0fb259e032bb4d014002 (patch) | |
tree | 4d945ff84ee3affb3187acb1fbb8ba9d300718d8 /googlemock/docs/FrequentlyAskedQuestions.md | |
parent | cf85f56b2159d7c964dacb3e311163a6f9520688 (diff) | |
parent | 0fe96607d85cf3a25ac40da369db62bbee2939a5 (diff) | |
download | googletest-3e2cb75446e0f56f226f0fb259e032bb4d014002.tar.gz googletest-3e2cb75446e0f56f226f0fb259e032bb4d014002.tar.bz2 googletest-3e2cb75446e0f56f226f0fb259e032bb4d014002.zip |
Merge branch 'master' into josh/fix_scoped_class2
Diffstat (limited to 'googlemock/docs/FrequentlyAskedQuestions.md')
-rw-r--r-- | googlemock/docs/FrequentlyAskedQuestions.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/googlemock/docs/FrequentlyAskedQuestions.md b/googlemock/docs/FrequentlyAskedQuestions.md index 5eac83f4..ccaa3d7a 100644 --- a/googlemock/docs/FrequentlyAskedQuestions.md +++ b/googlemock/docs/FrequentlyAskedQuestions.md @@ -240,7 +240,7 @@ You cannot mock a variadic function (i.e. a function taking ellipsis The problem is that in general, there is _no way_ for a mock object to know how many arguments are passed to the variadic method, and what the arguments' types are. Only the _author of the base class_ knows -the protocol, and we cannot look into his head. +the protocol, and we cannot look into their head. Therefore, to mock such a function, the _user_ must teach the mock object how to figure out the number of arguments and their types. One |