diff options
author | George Gardiner <george.gardiner@commonmode.co.uk> | 2015-04-13 09:11:51 +0100 |
---|---|---|
committer | George Gardiner <george.gardiner@commonmode.co.uk> | 2015-04-13 09:11:51 +0100 |
commit | 7a60951df49c129a7e24ec302d976d32dbe9af79 (patch) | |
tree | 074ae1f3979e2d63e8d609390eb99c2f82389aa6 /Source/SPSQLExporter.m | |
parent | 438e86702a2337423d880e52fd043a74fa982ebd (diff) | |
download | sequelpro-7a60951df49c129a7e24ec302d976d32dbe9af79.tar.gz sequelpro-7a60951df49c129a7e24ec302d976d32dbe9af79.tar.bz2 sequelpro-7a60951df49c129a7e24ec302d976d32dbe9af79.zip |
Fixed a typo
Diffstat (limited to 'Source/SPSQLExporter.m')
-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]]; |