Skip to content

Commit

Permalink
Fixed @SInCE processing. Closes #320.
Browse files Browse the repository at this point in the history
  • Loading branch information
tomaz committed Feb 25, 2013
1 parent fa9ae85 commit 040c578
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Processing/GBCommentsProcessor.m
Expand Up @@ -406,7 +406,7 @@ - (BOOL)processAvailabilityBlockInString:(NSString *)string lines:(NSArray *)lin
if ([components count] == 0) return NO;

// Get data from captures. Index 1 is directive, index 2 description text.
NSString *description = [components count] > 3 ? [components objectAtIndex:3] : @"";
NSString *description = [components count] > 2 ? [components objectAtIndex:3] : @"";
NSRange range = [string rangeOfString:description];
NSString *prefix = nil;
if (range.location < [string length]) {
Expand Down

0 comments on commit 040c578

Please sign in to comment.