Skip to content

Commit 450cd64

Browse files
authored
Merge pull request #6 from gaetbout/patch-1
Fix documentation typo
2 parents e23a9c0 + 5584b76 commit 450cd64

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/interfaces/IPluginExecutor.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
pragma solidity ^0.8.19;
33

44
interface IPluginExecutor {
5-
/// @notice Method from cals made from plugins.
5+
/// @notice Method from calls made from plugins.
66
/// @param data The call data for the call.
77
/// @return The return data from the call.
88
function executeFromPlugin(bytes calldata data) external payable returns (bytes memory);
99

10-
/// @notice Method from cals made from plugins.
10+
/// @notice Method from calls made from plugins.
1111
/// @dev If the target is a plugin, the call SHOULD revert.
1212
/// @param target The target of the external contract to be called.
1313
/// @param value The value to pass.

src/libraries/AccountStorage.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ struct PluginData {
1717
StoredInjectedHook[] injectedHooks;
1818
}
1919

20-
// A version of IPliginManager.InjectedHook used to track injected hooks in storage.
20+
// A version of IPluginManager. InjectedHook used to track injected hooks in storage.
2121
// Omits the hookApplyData field, which is not needed for storage, and flattens the struct.
2222
struct StoredInjectedHook {
2323
// The plugin that provides the hook

0 commit comments

Comments
 (0)