Skip to content

Commit

Permalink
bself -> self
Browse files Browse the repository at this point in the history
  • Loading branch information
Machx committed Mar 28, 2013
1 parent 9eeeebd commit 1c0f477
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MVVM IOS Example/CDWViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ - (void)viewDidLoad
//we've updated less than a certain number times as the view model specifies
RAC(self.scoreStepper.hidden) = [RACAble(self.scoreUpdates) map:^id(NSNumber *x) {
@strongify(self);
return @(x.intValue >= bself.viewModel.maxPointUpdates);
return @(x.intValue >= self.viewModel.maxPointUpdates);
}];

//only take the maxPointUpdates number of score updates
Expand Down

0 comments on commit 1c0f477

Please sign in to comment.