diff --git a/docs/CMock_Summary.md b/docs/CMock_Summary.md index 8a9b9f9..6d8d051 100644 --- a/docs/CMock_Summary.md +++ b/docs/CMock_Summary.md @@ -168,9 +168,11 @@ Ignore Arg: Maybe you overall want to use Expect and its similar variations, but you don't care what is passed to a particular argument. This is particularly useful when that argument is a pointer to a value that is supposed to be filled in by the function. You don't want -to use ExpectAnyArgs, because you still care about the other arguments. Instead, before -any of your Expect calls are made, you can call this function. It tells CMock to ignore -a particular argument for the rest of this test, for this mock function. +to use ExpectAnyArgs, because you still care about the other arguments. Instead, after +an Expect call is made, you can call this function. It tells CMock to ignore +a particular argument for the rest of this test, for this mock function. You may call +multiple instances of this to ignore multiple arguments after each expectation if +desired. * `void func(params)` => `void func_IgnoreArg_paramName(void)` diff --git a/vendor/unity b/vendor/unity index 7514b89..2939c42 160000 --- a/vendor/unity +++ b/vendor/unity @@ -1 +1 @@ -Subproject commit 7514b89fa61597dc6addc39689bbdb960c68778e +Subproject commit 2939c420ed9f2697bcb82c1b193bb48c4a8ad7a9