From c2ff9e9fdc81652fd47b9b9e6d61ed857723794e Mon Sep 17 00:00:00 2001 From: Larry Salibra Date: Sat, 25 Feb 2017 00:22:19 +0200 Subject: [PATCH] more typos --- native/macos/Blockstack/Blockstack/ApplicationDelegate.m | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/native/macos/Blockstack/Blockstack/ApplicationDelegate.m b/native/macos/Blockstack/Blockstack/ApplicationDelegate.m index 02a4f6ee8..de318c95d 100644 --- a/native/macos/Blockstack/Blockstack/ApplicationDelegate.m +++ b/native/macos/Blockstack/Blockstack/ApplicationDelegate.m @@ -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];