Skip to content

Commit

Permalink
fix type missmatch
Browse files Browse the repository at this point in the history
  • Loading branch information
skywinder committed Nov 4, 2014
1 parent e17ff45 commit 743b180
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/BEMSimpleLineGraphView.m
Original file line number Diff line number Diff line change
Expand Up @@ -880,7 +880,7 @@ - (NSNumber *)calculateMinimumPointValue {
NSExpression *expression = [NSExpression expressionForFunction:@"min:" arguments:@[[NSExpression expressionForConstantValue:dataPoints]]];
NSNumber *value = [expression expressionValueWithObject:nil context:nil];
return value;
} else return 0;
} else return @0;
}

- (NSNumber *)calculateMaximumPointValue {
Expand Down

0 comments on commit 743b180

Please sign in to comment.