Skip to content

Commit

Permalink
more typos
Browse files Browse the repository at this point in the history
  • Loading branch information
larrysalibra committed Feb 24, 2017
1 parent 4e23402 commit c2ff9e9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions native/macos/Blockstack/Blockstack/ApplicationDelegate.m
Original file line number Diff line number Diff line change
Expand Up @@ -94,15 +94,15 @@ - (void)statusItemClick:(id)sender
[menu addItem:[NSMenuItem separatorItem]];

NSMenuItem *portalPortMenuItem = [[NSMenuItem alloc] init];
portalPortMenuItem.title = [NSString stringWithFormat:@"Portal proxy running on port on %d", [self portalPort]];
portalPortMenuItem.title = [NSString stringWithFormat:@"Portal proxy running on port %d", [self portalPort]];
portalPortMenuItem.enabled = NO;

NSMenuItem *corsProxyPortMenuItem = [[NSMenuItem alloc] init];
corsProxyPortMenuItem.title = [NSString stringWithFormat:@"CORS proxy running on port on %d", [self corsProxyPort]];
corsProxyPortMenuItem.title = [NSString stringWithFormat:@"CORS proxy running on port %d", [self corsProxyPort]];
corsProxyPortMenuItem.enabled = NO;

NSMenuItem *corePortMenuItem = [[NSMenuItem alloc] init];
corePortMenuItem.title = @"Core node running port on 6270";
corePortMenuItem.title = @"Core node running on port 6270";
corePortMenuItem.enabled = NO;

[menu addItem:portalPortMenuItem];
Expand Down

0 comments on commit c2ff9e9

Please sign in to comment.