Skip to content

Commit bb54565

Browse files
committed
Fix up minor typo
1 parent 57139aa commit bb54565

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)