1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
Description: Fix some spelling errors.
Author: Yavor Doganov <yavor@gnu.org>
Forwarded: https://savannah.nongnu.org/bugs/?66281
Last-Update: 2024-10-02
---
--- zipper.app.orig/NSObject+Custom.m
+++ zipper.app/NSObject+Custom.m
@@ -6,7 +6,7 @@
- (void)methodIsAbstract:(SEL)selector;
{
[NSException raise:NSInternalInconsistencyException
- format:@"*** No concrete implementation for selector '%@' in class %@. Abstract definition must be overriden.",
+ format:@"*** No concrete implementation for selector '%@' in class %@. Abstract definition must be overridden.",
NSStringFromSelector(selector), NSStringFromClass(isa)];
}
--- zipper.app.orig/ZipperDocument.m
+++ zipper.app/ZipperDocument.m
@@ -330,7 +330,7 @@
}
else
{
- message = [NSString stringWithFormat:@"A problem occured expanding archive to %@", path];
+ message = [NSString stringWithFormat:@"A problem occurred expanding archive to %@", path];
}
NSRunAlertPanel(@"Expand", message, nil, nil, nil);
}
|