diff options
author | Gennadiy Civil <misterg@google.com> | 2019-10-07 19:16:08 (GMT) |
---|---|---|
committer | Gennadiy Civil <misterg@google.com> | 2019-10-07 19:16:08 (GMT) |
commit | 3f5a8c6ee6ceea308d07def0f8430045f2edbc8e (patch) | |
tree | 136e72b2e83688655976eb0b1e9bfe3230ac0b47 /googlemock | |
parent | 4360e4267c1e873946428019675bea9cc10c0bf1 (diff) | |
parent | 51f7396d40585f6d785b7d1218be9319c358092a (diff) | |
download | googletest-3f5a8c6ee6ceea308d07def0f8430045f2edbc8e.zip googletest-3f5a8c6ee6ceea308d07def0f8430045f2edbc8e.tar.gz googletest-3f5a8c6ee6ceea308d07def0f8430045f2edbc8e.tar.bz2 |
Merge pull request #2495 from hyukmyeong:typo
PiperOrigin-RevId: 273346440
Diffstat (limited to 'googlemock')
-rw-r--r-- | googlemock/docs/for_dummies.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/googlemock/docs/for_dummies.md b/googlemock/docs/for_dummies.md index e11c18d..93cf06f 100644 --- a/googlemock/docs/for_dummies.md +++ b/googlemock/docs/for_dummies.md @@ -213,7 +213,7 @@ specific domain much better than `Foo` does. Once you have a mock class, using it is easy. The typical work flow is: 1. Import the gMock names from the `testing` namespace such that you can use - them unqualified (You only have to do it once per file. Remember that + them unqualified (You only have to do it once per file). Remember that namespaces are a good idea. 2. Create some mock objects. 3. Specify your expectations on them (How many times will a method be called? |