Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions contracts/extension/plugin/PluginMap.sol
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ contract PluginMap is IPluginMap {
return _pluginAddress;
}

/// @dev View all funtionality as list of function signatures.
/// @dev View all functionality as list of function signatures.
function getAllFunctionsOfPlugin(address _pluginAddress) external view returns (bytes4[] memory registered) {
uint256 len = selectorsForPlugin[_pluginAddress].length();
registered = new bytes4[](len);
Expand All @@ -50,7 +50,7 @@ contract PluginMap is IPluginMap {
}
}

/// @dev View all funtionality existing on the contract.
/// @dev View all functionality existing on the contract.
function getAllPlugins() external view returns (Plugin[] memory _plugins) {
uint256 len = allSelectors.length();
_plugins = new Plugin[](len);
Expand Down
4 changes: 2 additions & 2 deletions contracts/extension/plugin/Router.sol
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ abstract contract Router is Multicall, ERC165, IRouter {
return pluginAddress != address(0) ? pluginAddress : IPluginMap(pluginMap).getPluginForFunction(_selector);
}

/// @dev View all funtionality as list of function signatures.
/// @dev View all functionality as list of function signatures.
function getAllFunctionsOfPlugin(address _pluginAddress) external view returns (bytes4[] memory registered) {
RouterStorage.Data storage data = RouterStorage.routerStorage();

Expand Down Expand Up @@ -165,7 +165,7 @@ abstract contract Router is Multicall, ERC165, IRouter {
}
}

/// @dev View all funtionality existing on the contract.
/// @dev View all functionality existing on the contract.
function getAllPlugins() external view returns (Plugin[] memory registered) {
RouterStorage.Data storage data = RouterStorage.routerStorage();

Expand Down