Skip to content

Commit 797ffdb

Browse files
akien-mgaaddmix
authored andcommitted
iOS: Fix typo in GodotApplicationDelegate
Fixes godotengine#90714.
1 parent 366350f commit 797ffdb

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

platform/ios/godot_app_delegate.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333
typedef NSObject<UIApplicationDelegate> ApplicationDelegateService;
3434

35-
@interface GodotApplicalitionDelegate : NSObject <UIApplicationDelegate>
35+
@interface GodotApplicationDelegate : NSObject <UIApplicationDelegate>
3636

3737
@property(class, readonly, strong) NSArray<ApplicationDelegateService *> *services;
3838

platform/ios/godot_app_delegate.m

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@
3232

3333
#import "app_delegate.h"
3434

35-
@interface GodotApplicalitionDelegate ()
35+
@interface GodotApplicationDelegate ()
3636

3737
@end
3838

39-
@implementation GodotApplicalitionDelegate
39+
@implementation GodotApplicationDelegate
4040

4141
static NSMutableArray<ApplicationDelegateService *> *services = nil;
4242

platform/ios/main.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ int main(int argc, char *argv[]) {
4646
gargv = argv;
4747

4848
@autoreleasepool {
49-
NSString *className = NSStringFromClass([GodotApplicalitionDelegate class]);
49+
NSString *className = NSStringFromClass([GodotApplicationDelegate class]);
5050
UIApplicationMain(argc, argv, nil, className);
5151
}
5252
return 0;

0 commit comments

Comments
 (0)