Skip to content

Commit 06e8a9a

Browse files
authored
Merge pull request #477 from dmaclach/ocmarg_spelling
Fix up minor typo
2 parents 4abd19a + bb54565 commit 06e8a9a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Source/OCMock/OCMConstraint.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ + (instancetype)constraintWithSelector:(SEL)aSelector onObject:(id)anObject
4141
NSMethodSignature *signature = [anObject methodSignatureForSelector:aSelector];
4242
if(signature == nil)
4343
[NSException raise:NSInvalidArgumentException
44-
format:@"Unkown selector %@ used in constraint.", NSStringFromSelector(aSelector)];
44+
format:@"Unknown selector %@ used in constraint.", NSStringFromSelector(aSelector)];
4545
NSInvocation *invocation = [NSInvocation invocationWithMethodSignature:signature];
4646
[invocation setTarget:anObject];
4747
[invocation setSelector:aSelector];

0 commit comments

Comments
 (0)