diff --git a/contracts/GroupNFT.sol b/contracts/GroupNFT.sol index a023ef425..a731bc56e 100644 --- a/contracts/GroupNFT.sol +++ b/contracts/GroupNFT.sol @@ -100,7 +100,7 @@ contract GroupNFT is IGroupNFT, ERC721Upgradeable, AccessManagedUpgradeable, UUP '"name": "Story Protocol IP Assets Group #', id.toString(), '",', - '"description": IPAsset Group",', + '"description": "IPAsset Group",', '"external_url": "https://protocol.storyprotocol.xyz/ipa/', id.toString(), '",', diff --git a/contracts/IPAccountImpl.sol b/contracts/IPAccountImpl.sol index c49b2a984..5571e18ec 100644 --- a/contracts/IPAccountImpl.sol +++ b/contracts/IPAccountImpl.sol @@ -223,7 +223,7 @@ contract IPAccountImpl is ERC6551, IPAccountStorage, IIPAccount { } } - /// @dev Updates the IP Account's state all execute transactions. + /// @dev Updates the IP Account's state for all executed transactions. /// @param to The "target" of the execute transactions. /// @param value The amount of Ether to send. /// @param data The data to send along with the transaction. @@ -238,7 +238,7 @@ contract IPAccountImpl is ERC6551, IPAccountStorage, IIPAccount { /// @dev Override Solady 6551 _isValidSigner function. /// @param signer The signer to check - /// @param extraData The extra data to check against, it should bethe address of the recipient for IPAccount + /// @param extraData The extra data to check against, it should be the address of the recipient for IPAccount /// @param context The context for validating the signer /// @return bool is true if the signer is valid, false otherwise function _isValidSigner( diff --git a/script/foundry/utils/upgrades/StorageLayoutCheck.s.sol b/script/foundry/utils/upgrades/StorageLayoutCheck.s.sol index 271424fa3..dc7f5067c 100644 --- a/script/foundry/utils/upgrades/StorageLayoutCheck.s.sol +++ b/script/foundry/utils/upgrades/StorageLayoutCheck.s.sol @@ -50,7 +50,7 @@ contract StorageLayoutChecker is Script { uint8 i = 0; // npx @openzeppelin/upgrades-core validate --requireReference inputBuilder[i++] = "npx"; - inputBuilder[i++] = string.concat("@openzeppelin/upgrades-core"); + inputBuilder[i++] = "@openzeppelin/upgrades-core"; inputBuilder[i++] = "validate"; inputBuilder[i++] = string.concat(outDir, "/build-info"); @@ -62,4 +62,4 @@ contract StorageLayoutChecker is Script { return inputs; } -} \ No newline at end of file +}