diff options
author | Billy Donahue <BillyDonahue@users.noreply.github.com> | 2016-03-08 10:52:28 -0500 |
---|---|---|
committer | Billy Donahue <BillyDonahue@users.noreply.github.com> | 2016-03-08 10:52:28 -0500 |
commit | eba17963107837f6a408bdafa32da5276b9f71e6 (patch) | |
tree | 433f7d08f3df5ecb443f090714b2804d331570d3 | |
parent | f7248d80eae141397d39cc4b6a2ae7333a1d4935 (diff) | |
parent | 0098be394ad5e5e97dd838ab21588b83ede18857 (diff) | |
download | googletest-eba17963107837f6a408bdafa32da5276b9f71e6.tar.gz googletest-eba17963107837f6a408bdafa32da5276b9f71e6.tar.bz2 googletest-eba17963107837f6a408bdafa32da5276b9f71e6.zip |
Merge pull request #735 from phad/patch-1
Fix typo (Inovke -> Invoke)
-rw-r--r-- | googlemock/docs/CookBook.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/googlemock/docs/CookBook.md b/googlemock/docs/CookBook.md index c215b551..c52f1009 100644 --- a/googlemock/docs/CookBook.md +++ b/googlemock/docs/CookBook.md @@ -2103,7 +2103,7 @@ For better readability, Google Mock also gives you: * `WithArg<N>(action)` (no `s` after `Arg`) when the inner `action` takes _one_ argument. As you may have realized, `InvokeWithoutArgs(...)` is just syntactic -sugar for `WithoutArgs(Inovke(...))`. +sugar for `WithoutArgs(Invoke(...))`. Here are more tips: |