From 0098be394ad5e5e97dd838ab21588b83ede18857 Mon Sep 17 00:00:00 2001 From: Paul Hadfield Date: Tue, 8 Mar 2016 13:40:26 +0000 Subject: [PATCH] Fix typo (Inovke -> Invoke) --- googlemock/docs/CookBook.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(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: