diff --git a/gomock/call.go b/gomock/call.go index 3d54d9f5..d3d195c5 100644 --- a/gomock/call.go +++ b/gomock/call.go @@ -276,7 +276,7 @@ func (c *Call) satisfied() bool { return c.numCalls >= c.minCalls } -// Returns true iff the maximum number of calls have been made. +// Returns true if the maximum number of calls have been made. func (c *Call) exhausted() bool { return c.numCalls >= c.maxCalls }