Skip to content

Commit

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

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

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

NSMenuItem *corePortMenuItem = [[NSMenuItem alloc] init];
Expand Down

0 comments on commit 4e23402

Please sign in to comment.