From 400ea1e7f8e587ec78019146ce9a72b7899aca17 Mon Sep 17 00:00:00 2001 From: overallteach Date: Wed, 11 Jun 2025 18:30:28 +0800 Subject: [PATCH] chore: fix some typos Signed-off-by: overallteach --- .../solidstate-solidity/contracts/interfaces/IERC1155.sol | 2 +- .../proxy/diamond/writable/DiamondWritableInternal.sol | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/plume/src/lib/vendor/solidstate-solidity/contracts/interfaces/IERC1155.sol b/plume/src/lib/vendor/solidstate-solidity/contracts/interfaces/IERC1155.sol index 3af56485..3a992cd3 100644 --- a/plume/src/lib/vendor/solidstate-solidity/contracts/interfaces/IERC1155.sol +++ b/plume/src/lib/vendor/solidstate-solidity/contracts/interfaces/IERC1155.sol @@ -23,7 +23,7 @@ interface IERC1155 is IERC1155Internal, IERC165 { /** * @notice query the balances of given tokens held by given addresses - * @param accounts addresss to query + * @param accounts address to query * @param ids tokens to query * @return token balances */ diff --git a/plume/src/lib/vendor/solidstate-solidity/contracts/proxy/diamond/writable/DiamondWritableInternal.sol b/plume/src/lib/vendor/solidstate-solidity/contracts/proxy/diamond/writable/DiamondWritableInternal.sol index f89a326e..8bc7ba10 100644 --- a/plume/src/lib/vendor/solidstate-solidity/contracts/proxy/diamond/writable/DiamondWritableInternal.sol +++ b/plume/src/lib/vendor/solidstate-solidity/contracts/proxy/diamond/writable/DiamondWritableInternal.sol @@ -90,7 +90,7 @@ abstract contract DiamondWritableInternal is IDiamondWritableInternal { * @notice add to the diamond a set of selectors associated with a particular facet * @dev selectors are added one-by-one to lastSlug, which is written to storage and updated to represent the subsequent slug when full * @dev lastSlug may be initialized with "dirty" higher-index bits, but these are ignored because they are out of range - * @dev selectorCount and lastSlug are modified in place and returned to avoid reundant storage access + * @dev selectorCount and lastSlug are modified in place and returned to avoid redundant storage access * @param l storage pointer to the DiamondBaseStorage Layout struct * @param facetCut structured data representing facet address and selectors to add * @param selectorCount total number of selectors registered on the diamond proxy @@ -150,7 +150,7 @@ abstract contract DiamondWritableInternal is IDiamondWritableInternal { * @notice remove from the diamond a set of selectors associated with a particular facet * @dev selectors are removed one-by-one from lastSlug, which is updated to represent the preceeding slug when empty * @dev lastSlug is not updated in storage when modified or removed, leaving "dirty" higher-index bits, but these are ignored because they are out of range - * @dev selectorCount and lastSlug are modified in place and returned to avoid reundant storage access + * @dev selectorCount and lastSlug are modified in place and returned to avoid redundant storage access * @param l storage pointer to the DiamondBaseStorage Layout struct * @param facetCut structured data representing facet address and selectors to remove * @param selectorCount total number of selectors registered on the diamond proxy