Fix typos discovered by codespell

This commit is contained in:
Christian Clauss 2021-09-16 21:44:29 +02:00 committed by GitHub
parent 861a75ed5d
commit 5b43f14be9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4188,7 +4188,7 @@ This implementation class does *not* need to inherit from any particular class.
What matters is that it must have a `Perform()` method template. This method
template takes the mock function's arguments as a tuple in a **single**
argument, and returns the result of the action. It can be either `const` or not,
but must be invokable with exactly one template argument, which is the result
but must be invocable with exactly one template argument, which is the result
type. In other words, you must be able to call `Perform<R>(args)` where `R` is
the mock function's return type and `args` is its arguments in a tuple.