Skip to content

Commit

Permalink
missing semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
SohailKh committed Jun 29, 2016
1 parent c0603a5 commit a581855
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions RKNotificationHub/RKNotificationHub.m
Original file line number Diff line number Diff line change
Expand Up @@ -153,8 +153,8 @@ - (void)setCircleColor:(UIColor*)circleColor labelColor:(UIColor*)labelColor
}

- (void)setCircleBorderColor:(UIColor *)color borderWidth:(CGFloat)width {
redCircle.layer.borderColor = color.CGColor
redCircle.layer.borderWidth = width
redCircle.layer.borderColor = color.CGColor;
redCircle.layer.borderWidth = width;
}

- (void)hideCount
Expand Down

0 comments on commit a581855

Please sign in to comment.