Skip to content

Commit

Permalink
Fixed error in documentation code sample.
Browse files Browse the repository at this point in the history
  • Loading branch information
mlwelles committed Apr 2, 2015
1 parent e9f0c32 commit 0d1e8f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ To limit this subscription to just those beacons that are relevant to your appli
NSUUID *applicationUUID = [[NSUUID alloc] initWithUUIDString:@"B9407F30-F5F8-466E-AFF9-25556B57FE6D"]
RACSignal *filteredSignal = [[[HGBeaconScanner sharedBeaconScanner] beaconSignal] filter:^(HGBeacon *beacon) {
return [beaconSignal.proximityUUID isEqual:applicationUUID];
return [beacon.proximityUUID isEqual:applicationUUID];
}];
```

Expand Down

0 comments on commit 0d1e8f8

Please sign in to comment.