Skip to content

Commit 4c862e5

Browse files
committed
fix mysteriously missing semicolons from 611a1da
1 parent f172155 commit 4c862e5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Geocoder Example/ViewController.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ - (void)viewDidLoad {
3535
[self.view addSubview:self.mapView];
3636

3737
self.resultsLabel = [[UILabel alloc] initWithFrame:CGRectMake(10, 20, self.view.bounds.size.width - 20, 30)];
38-
self.resultsLabel.autoresizingMask = UIViewAutoresizingFlexibleWidth
39-
self.resultsLabel.adjustsFontSizeToFitWidth = YES
38+
self.resultsLabel.autoresizingMask = UIViewAutoresizingFlexibleWidth;
39+
self.resultsLabel.adjustsFontSizeToFitWidth = YES;
4040
self.resultsLabel.backgroundColor = [[UIColor whiteColor] colorWithAlphaComponent:0.5];
4141
self.resultsLabel.userInteractionEnabled = NO;
4242
[self.view addSubview:self.resultsLabel];

0 commit comments

Comments
 (0)