Skip to content

Commit

Permalink
Fixed spelling.
Browse files Browse the repository at this point in the history
  • Loading branch information
matej committed Mar 28, 2012
1 parent 7aa3f64 commit 9b0d99b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.mdown
Expand Up @@ -60,10 +60,10 @@ If you need to configure the HUD you can do this by using the MBProgressHUD refe
```obj-c
MBProgressHUD hud = [MBProgressHUD showHUDAddedTo:self.view animated:YES];
HUD.mode = MBProgressHUDModeAnnularDeterminate;
HUD.labelText = @"Loading";
[self doSomethingInBackgroundWithProgressCallback:^(float porgress) {
HUD.progress = porgress;
hud.mode = MBProgressHUDModeAnnularDeterminate;
hud.labelText = @"Loading";
[self doSomethingInBackgroundWithProgressCallback:^(float progress) {
hud.progress = progress;
} completionCallback:^{
[MBProgressHUD hideHUDForView:self.view animated:YES];
}];
Expand Down

0 comments on commit 9b0d99b

Please sign in to comment.