@@ -336,18 +336,18 @@ contract Kernel is IAccount, IAccountExecute, IERC7579Account, ValidationManager
336336 _installHook (IHook (address (bytes20 (initData[4 :24 ]))), hookData);
337337 } else if (moduleType == MODULE_TYPE_HOOK) {
338338 // force call onInstall for hook
339- // NOTE: for hook, kernel does not support independant hook install,
339+ // NOTE: for hook, kernel does not support independent hook install,
340340 // hook is expected to be paired with proper validator/executor/selector
341341 IHook (module).onInstall (initData);
342342 } else if (moduleType == MODULE_TYPE_POLICY) {
343343 // force call onInstall for policy
344- // NOTE: for policy, kernel does not support independant policy install,
344+ // NOTE: for policy, kernel does not support independent policy install,
345345 // policy is expected to be paired with proper permissionId
346346 // to "ADD" permission, use "installValidations()" function
347347 IPolicy (module).onInstall (initData);
348348 } else if (moduleType == MODULE_TYPE_SIGNER) {
349349 // force call onInstall for signer
350- // NOTE: for signer, kernel does not support independant signer install,
350+ // NOTE: for signer, kernel does not support independent signer install,
351351 // signer is expected to be paired with proper permissionId
352352 // to "ADD" permission, use "installValidations()" function
353353 ISigner (module).onInstall (initData);
@@ -400,7 +400,7 @@ contract Kernel is IAccount, IAccountExecute, IERC7579Account, ValidationManager
400400 _validationStorage ().validationConfig[vId].hook = IHook (address (1 ));
401401 }
402402 // force call onInstall for hook
403- // NOTE: for hook, kernel does not support independant hook install,
403+ // NOTE: for hook, kernel does not support independent hook install,
404404 // hook is expected to be paired with proper validator/executor/selector
405405 ModuleLib.uninstallModule (module, deInitData);
406406 } else if (moduleType == 5 ) {
@@ -412,7 +412,7 @@ contract Kernel is IAccount, IAccountExecute, IERC7579Account, ValidationManager
412412 }
413413 }
414414 // force call onInstall for policy
415- // NOTE: for policy, kernel does not support independant policy install,
415+ // NOTE: for policy, kernel does not support independent policy install,
416416 // policy is expected to be paired with proper permissionId
417417 // to "REMOVE" permission, use "uninstallValidation()" function
418418 ModuleLib.uninstallModule (module, deInitData);
@@ -425,7 +425,7 @@ contract Kernel is IAccount, IAccountExecute, IERC7579Account, ValidationManager
425425 }
426426 }
427427 // force call onInstall for signer
428- // NOTE: for signer, kernel does not support independant signer install,
428+ // NOTE: for signer, kernel does not support independent signer install,
429429 // signer is expected to be paired with proper permissionId
430430 // to "REMOVE" permission, use "uninstallValidation()" function
431431 ModuleLib.uninstallModule (module, deInitData);
0 commit comments