summaryrefslogtreecommitdiffstats
path: root/googlemock/docs
diff options
context:
space:
mode:
authorkeshavgbpecdelhi <56075233+keshavgbpecdelhi@users.noreply.github.com>2020-09-27 09:57:14 (GMT)
committerGitHub <noreply@github.com>2020-09-27 09:57:14 (GMT)
commit1f3484a2b7af704630661b8e323ddad0c4a07d4e (patch)
treee7d1c18ef5c276db99a22a3cf3a91435d7168df5 /googlemock/docs
parentfe4d5f10840c5f62b984364a4d41719f1bc079a2 (diff)
downloadgoogletest-1f3484a2b7af704630661b8e323ddad0c4a07d4e.zip
googletest-1f3484a2b7af704630661b8e323ddad0c4a07d4e.tar.gz
googletest-1f3484a2b7af704630661b8e323ddad0c4a07d4e.tar.bz2
Update cook_book.mdrefs/pull/3027/head
Please note that changing the default value for a type can make [you]* test..... Here "you" word doesn't make sense.. rather "your" seems to make it understandable.
Diffstat (limited to 'googlemock/docs')
-rw-r--r--googlemock/docs/cook_book.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/googlemock/docs/cook_book.md b/googlemock/docs/cook_book.md
index 0890fb8..f8e9a50 100644
--- a/googlemock/docs/cook_book.md
+++ b/googlemock/docs/cook_book.md
@@ -2115,7 +2115,7 @@ class MockFoo : public Foo {
DefaultValue<Bar>::Clear();
```
-Please note that changing the default value for a type can make you tests hard
+Please note that changing the default value for a type can make your tests hard
to understand. We recommend you to use this feature judiciously. For example,
you may want to make sure the `Set()` and `Clear()` calls are right next to the
code that uses your mock.