diff options
author | Max Lohrmann <dmoagx@users.noreply.github.com> | 2017-02-25 19:40:52 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-25 19:40:52 +0100 |
commit | b87faacf805f76daaa5ad9e2e6e39efc3d558289 (patch) | |
tree | bdda2f79f776ed82ae72f01aa79edf7964be14e7 | |
parent | ea196b6eaa3696f1d3c20b396d1f7f62e3b540fc (diff) | |
parent | ce8a18950e4778d7ae4a5f1e3a7ce5d53464d90d (diff) | |
download | sequelpro-b87faacf805f76daaa5ad9e2e6e39efc3d558289.tar.gz sequelpro-b87faacf805f76daaa5ad9e2e6e39efc3d558289.tar.bz2 sequelpro-b87faacf805f76daaa5ad9e2e6e39efc3d558289.zip |
Merge pull request #2703 from quentinms/patch-1
Fix typo when exporting processes list
-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) { |