Skip to content

Commit

Permalink
Add missing negation in error message
Browse files Browse the repository at this point in the history
  • Loading branch information
Joerg Jacobsen committed Apr 18, 2015
1 parent 433ba66 commit 7038e07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion IMBParser.m
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ - (CGImageRef) thumbnailFromLocalImageFileForObject:(IMBObject*)inObject error:(

if (source == nil)
{
NSString* description = [NSString stringWithFormat:@"Could find image file at %@",url];
NSString* description = [NSString stringWithFormat:@"Could not find image file at %@",url];
NSDictionary* info = [NSDictionary dictionaryWithObjectsAndKeys:description,NSLocalizedDescriptionKey,nil];
error = [NSError errorWithDomain:kIMBErrorDomain code:fnfErr userInfo:info];
}
Expand Down

0 comments on commit 7038e07

Please sign in to comment.