diff options
author | Jonathan Wakely <jwakely@redhat.com> | 2017-09-27 13:31:13 +0100 |
---|---|---|
committer | Jonathan Wakely <jwakely@redhat.com> | 2017-09-27 13:31:13 +0100 |
commit | b70cf1a663ad30f77ab9867095a87d3d5429450d (patch) | |
tree | ac98f22d19193c60ceecba1aca0c7d824d32f77f /googlemock/src | |
parent | f1a87d73fc604c5ab8fbb0cc6fa9a86ffd845530 (diff) | |
download | googletest-b70cf1a663ad30f77ab9867095a87d3d5429450d.tar.gz googletest-b70cf1a663ad30f77ab9867095a87d3d5429450d.tar.bz2 googletest-b70cf1a663ad30f77ab9867095a87d3d5429450d.zip |
Use gender-neutral pronouns in comments and docs
Diffstat (limited to 'googlemock/src')
-rw-r--r-- | googlemock/src/gmock-internal-utils.cc | 2 | ||||
-rw-r--r-- | googlemock/src/gmock-spec-builders.cc | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/googlemock/src/gmock-internal-utils.cc b/googlemock/src/gmock-internal-utils.cc index 6464abc2..91bf3fd9 100644 --- a/googlemock/src/gmock-internal-utils.cc +++ b/googlemock/src/gmock-internal-utils.cc @@ -71,7 +71,7 @@ GTEST_API_ string ConvertIdentifierNameToWords(const char* id_name) { } // This class reports Google Mock failures as Google Test failures. A -// user can define another class in a similar fashion if he intends to +// user can define another class in a similar fashion if they intend to // use Google Mock with a testing framework other than Google Test. class GoogleTestFailureReporter : public FailureReporterInterface { public: diff --git a/googlemock/src/gmock-spec-builders.cc b/googlemock/src/gmock-spec-builders.cc index 0eaaee75..fc4968ba 100644 --- a/googlemock/src/gmock-spec-builders.cc +++ b/googlemock/src/gmock-spec-builders.cc @@ -353,10 +353,10 @@ UntypedFunctionMockerBase::UntypedInvokeWith(const void* const untyped_args) // the behavior of ReportUninterestingCall(). const bool need_to_report_uninteresting_call = // If the user allows this uninteresting call, we print it - // only when he wants informational messages. + // only when they want informational messages. reaction == kAllow ? LogIsVisible(kInfo) : // If the user wants this to be a warning, we print it only - // when he wants to see warnings. + // when they want to see warnings. reaction == kWarn ? LogIsVisible(kWarning) : // Otherwise, the user wants this to be an error, and we // should always print detailed information in the error. |