From 001e5157bb04a778c383bea21df110831541f26f Mon Sep 17 00:00:00 2001 From: Zentex Date: Tue, 3 Feb 2026 22:33:17 +0530 Subject: [PATCH] Fix NatSpec: capitalize and improve grammar in ILensProfiles.sol Improved the documentation for transferFromKeepingDelegates function: - Capitalized the first letter to match other @notice tags - Changed 'of profile' to 'a profile' for better grammar - Added period at the end for consistency --- contracts/interfaces/ILensProfiles.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/interfaces/ILensProfiles.sol b/contracts/interfaces/ILensProfiles.sol index c6a52ab9..b094f8c7 100644 --- a/contracts/interfaces/ILensProfiles.sol +++ b/contracts/interfaces/ILensProfiles.sol @@ -31,7 +31,7 @@ interface ILensProfiles is ILensERC721 { function getTokenGuardianDisablingTimestamp(address wallet) external view returns (uint256); /** - * @notice allows transferring of profile but keeping the delegate settings + * @notice Allows transferring a profile while keeping the delegate settings. */ function transferFromKeepingDelegates(address from, address to, uint256 tokenId) external; }