From aacf2feb0700eb324c7d83807288d9a70d0a7e11 Mon Sep 17 00:00:00 2001 From: Adam Boudjemaa Date: Thu, 5 Mar 2026 13:34:08 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20fix=20NatSpec=20comment=20prefix?= =?UTF-8?q?=20in=20ERC1155=20and=20ERC6909?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/tokens/ERC1155.sol | 2 +- src/tokens/ERC6909.sol | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tokens/ERC1155.sol b/src/tokens/ERC1155.sol index 3f045b47eb..e7abd7363a 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 5f94d32493..ddbe4e9b1c 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 {