From 3380da99d1d2b4a1714486bddd32bf69abb58ae6 Mon Sep 17 00:00:00 2001 From: Patrick Wardle Date: Sat, 11 Apr 2020 12:17:22 -1000 Subject: [PATCH] method rename ...spelling --- Installer/Helper/HelperInterface.m | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Installer/Helper/HelperInterface.m b/Installer/Helper/HelperInterface.m index a118614..f156bd2 100644 --- a/Installer/Helper/HelperInterface.m +++ b/Installer/Helper/HelperInterface.m @@ -37,7 +37,7 @@ dispatch_source_t dispatchSource = nil; //configure // pass in 'install' flag - result = [NSNumber numberWithInt:[self configure:app arguements:@[CMD_INSTALL]]]; + result = [NSNumber numberWithInt:[self configure:app arguments:@[CMD_INSTALL]]]; //reply to client reply(result); @@ -78,7 +78,7 @@ dispatch_source_t dispatchSource = nil; //configure // pass in 'uninstall' flag - result = [NSNumber numberWithInt:[self configure:app arguements:@[CMD_UNINSTALL, [NSNumber numberWithBool:full].stringValue]]]; + result = [NSNumber numberWithInt:[self configure:app arguments:@[CMD_UNINSTALL, [NSNumber numberWithBool:full].stringValue]]]; //reply to client reply(result); @@ -88,7 +88,7 @@ dispatch_source_t dispatchSource = nil; //configure // install or uninstall --(int)configure:(NSString*)app arguements:(NSArray*)args +-(int)configure:(NSString*)app arguments:(NSArray*)args { //result int result = -1;