diff options
author | Abhi Beckert <abhi@abhibeckert.com> | 2017-03-03 10:36:53 +1000 |
---|---|---|
committer | Abhi Beckert <abhi@abhibeckert.com> | 2017-03-03 10:36:53 +1000 |
commit | f6591657661c87743bb4c1ce5e5a8412cc04e943 (patch) | |
tree | 86d18b62588bb817d33eca6e81e545c4f00d8cee /Source | |
parent | 0de6f372e1fe9723d01f9e73a75efe4930b68937 (diff) | |
parent | b87faacf805f76daaa5ad9e2e6e39efc3d558289 (diff) | |
download | sequelpro-f6591657661c87743bb4c1ce5e5a8412cc04e943.tar.gz sequelpro-f6591657661c87743bb4c1ce5e5a8412cc04e943.tar.bz2 sequelpro-f6591657661c87743bb4c1ce5e5a8412cc04e943.zip |
Merge commit 'b87faacf805f76daaa5ad9e2e6e39efc3d558289'
Diffstat (limited to 'Source')
-rw-r--r-- | Source/SPProcessListController.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/SPProcessListController.m b/Source/SPProcessListController.m index 96d8f3a2..d04273e1 100644 --- a/Source/SPProcessListController.m +++ b/Source/SPProcessListController.m @@ -238,7 +238,7 @@ static NSString *SPTableViewIDColumnIdentifier = @"Id"; [panel beginSheetModalForWindow:[self window] completionHandler:^(NSInteger returnCode) { if (returnCode == NSOKButton) { if ([processesFiltered count] > 0) { - NSMutableString *processesString = [NSMutableString stringWithFormat:@"# MySQL server proceese for %@\n\n", [[SPAppDelegate frontDocument] host]]; + NSMutableString *processesString = [NSMutableString stringWithFormat:@"# MySQL server processes for %@\n\n", [[SPAppDelegate frontDocument] host]]; for (NSDictionary *process in processesFiltered) { |