Skip to content

Commit

Permalink
fix typos using misspell
Browse files Browse the repository at this point in the history
  • Loading branch information
Lutzifer committed May 20, 2017
1 parent c843711 commit 546b96d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Demo/HudDemo/MBHudDemoViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ + (instancetype)exampleWithTitle:(NSString *)title selector:(SEL)selector {
@interface MBHudDemoViewController () <NSURLSessionDelegate>

@property (nonatomic, strong) NSArray<NSArray<MBExample *> *> *examples;
// Atomic, because it may be cancelled from main thread, flag is read on a background thread
// Atomic, because it may be canceled from main thread, flag is read on a background thread
@property (atomic, assign) BOOL canceled;

@end
Expand Down
2 changes: 1 addition & 1 deletion MBProgressHUD.m
Original file line number Diff line number Diff line change
Expand Up @@ -937,7 +937,7 @@ - (void)drawRect:(CGRect)rect {
CGFloat radius = (CGRectGetWidth(self.bounds) / 2.f) - (processPath.lineWidth / 2.f);
CGFloat endAngle = (self.progress * 2.f * (float)M_PI) + startAngle;
[processPath addArcWithCenter:center radius:radius startAngle:startAngle endAngle:endAngle clockwise:YES];
// Ensure that we don't get color overlaping when _progressTintColor alpha < 1.f.
// Ensure that we don't get color overlapping when _progressTintColor alpha < 1.f.
CGContextSetBlendMode(context, kCGBlendModeCopy);
[_progressTintColor set];
[processPath stroke];
Expand Down

0 comments on commit 546b96d

Please sign in to comment.