diff --git a/src/tokens/ERC1155.sol b/src/tokens/ERC1155.sol index 3f045b47e..e7abd7363 100644 --- a/src/tokens/ERC1155.sol +++ b/src/tokens/ERC1155.sol @@ -15,7 +15,7 @@ pragma solidity ^0.8.4; /// /// If you are overriding: /// - Make sure all variables written to storage are properly cleaned -// (e.g. the bool value for `isApprovedForAll` MUST be either 1 or 0 under the hood). +/// (e.g. the bool value for `isApprovedForAll` MUST be either 1 or 0 under the hood). /// - Check that the overridden function is actually used in the function you want to /// change the behavior of. Much of the code has been manually inlined for performance. abstract contract ERC1155 { diff --git a/src/tokens/ERC6909.sol b/src/tokens/ERC6909.sol index 5f94d3249..ddbe4e9b1 100644 --- a/src/tokens/ERC6909.sol +++ b/src/tokens/ERC6909.sol @@ -12,7 +12,7 @@ pragma solidity ^0.8.4; /// /// If you are overriding: /// - Make sure all variables written to storage are properly cleaned -// (e.g. the bool value for `isOperator` MUST be either 1 or 0 under the hood). +/// (e.g. the bool value for `isOperator` MUST be either 1 or 0 under the hood). /// - Check that the overridden function is actually used in the function you want to /// change the behavior of. Much of the code has been manually inlined for performance. abstract contract ERC6909 {