diff options
author | Max Lohrmann <dmoagx@users.noreply.github.com> | 2015-04-13 12:54:24 +0200 |
---|---|---|
committer | Max Lohrmann <dmoagx@users.noreply.github.com> | 2015-04-13 12:54:24 +0200 |
commit | 0cf249446498aeae507f56855c8d657c75554a44 (patch) | |
tree | 074ae1f3979e2d63e8d609390eb99c2f82389aa6 | |
parent | 438e86702a2337423d880e52fd043a74fa982ebd (diff) | |
parent | 7a60951df49c129a7e24ec302d976d32dbe9af79 (diff) | |
download | sequelpro-0cf249446498aeae507f56855c8d657c75554a44.tar.gz sequelpro-0cf249446498aeae507f56855c8d657c75554a44.tar.bz2 sequelpro-0cf249446498aeae507f56855c8d657c75554a44.zip |
Merge pull request #2096 from GeorgeGardiner/patch-1
Fixed a typo
-rw-r--r-- | Source/SPSQLExporter.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/SPSQLExporter.m b/Source/SPSQLExporter.m index f9dde93c..079ea8b9 100644 --- a/Source/SPSQLExporter.m +++ b/Source/SPSQLExporter.m @@ -729,7 +729,7 @@ // A NULL result indicates a permission problem if ([createProcedure isNSNull]) { - NSString *errorString = [NSString stringWithFormat:NSLocalizedString(@"Could not export the %@ '%@' because of a permisions error.\n", @"Procedure/function export permission error"), procedureType, procedureName]; + NSString *errorString = [NSString stringWithFormat:NSLocalizedString(@"Could not export the %@ '%@' because of a permissions error.\n", @"Procedure/function export permission error"), procedureType, procedureName]; [errors appendString:errorString]; if ([self sqlOutputIncludeErrors]) { [[self exportOutputFile] writeData:[[NSString stringWithFormat:@"# Error: %@\n", errorString] dataUsingEncoding:NSUTF8StringEncoding]]; |