aboutsummaryrefslogtreecommitdiffstats
path: root/googlemock/docs/FrequentlyAskedQuestions.md
diff options
context:
space:
mode:
authorGennadiy Civil <gennadiycivil@users.noreply.github.com>2017-10-03 10:57:19 -0400
committerGitHub <noreply@github.com>2017-10-03 10:57:19 -0400
commit7b6561c56e353100aca8458d7bc49c4e0119bae8 (patch)
treeac98f22d19193c60ceecba1aca0c7d824d32f77f /googlemock/docs/FrequentlyAskedQuestions.md
parentf1a87d73fc604c5ab8fbb0cc6fa9a86ffd845530 (diff)
parentb70cf1a663ad30f77ab9867095a87d3d5429450d (diff)
downloadgoogletest-7b6561c56e353100aca8458d7bc49c4e0119bae8.tar.gz
googletest-7b6561c56e353100aca8458d7bc49c4e0119bae8.tar.bz2
googletest-7b6561c56e353100aca8458d7bc49c4e0119bae8.zip
Merge pull request #1275 from jwakely/pr/1273
Use gender-neutral pronouns in comments and docs
Diffstat (limited to 'googlemock/docs/FrequentlyAskedQuestions.md')
-rw-r--r--googlemock/docs/FrequentlyAskedQuestions.md2
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