@@ -80,14 +80,13 @@ interface IModularAccount {
8080 /// @param module The module to install.
8181 /// @param manifest the manifest describing functions to install.
8282 /// @param installData Optional data to be used by the account to handle the initial execution setup. Data
83- /// encoding
84- /// is implementation-specific.
83+ /// encoding is implementation-specific.
8584 function installExecution (address module , ExecutionManifest calldata manifest , bytes calldata installData )
8685 external ;
8786
8887 /// @notice Uninstall a module from the modular account.
8988 /// @param module The module to uninstall.
90- /// @param manifest the manifest describing functions to uninstall.
89+ /// @param manifest The manifest describing functions to uninstall.
9190 /// @param uninstallData Optional data to be used by the account to handle the execution uninstallation. Data
9291 /// encoding is implementation-specific.
9392 function uninstallExecution (address module , ExecutionManifest calldata manifest , bytes calldata uninstallData )
@@ -113,8 +112,7 @@ interface IModularAccount {
113112 /// @param uninstallData Optional data to be used by the account to handle the validation uninstallation. Data
114113 /// encoding is implementation-specific.
115114 /// @param hookUninstallData Optional data to be used by the account to handle hook uninstallation. Data
116- /// encoding
117- /// is implementation-specific.
115+ /// encoding is implementation-specific.
118116 function uninstallValidation (
119117 ModuleEntity validationFunction ,
120118 bytes calldata uninstallData ,
0 commit comments