From 749998e62273a9036f523180ecdeca3d7185b6f0 Mon Sep 17 00:00:00 2001 From: jat <153528475+jatZama@users.noreply.github.com> Date: Fri, 20 Dec 2024 17:19:16 +0100 Subject: [PATCH] chore: remove false comment --- examples/Counter.sol | 1 - 1 file changed, 1 deletion(-) diff --git a/examples/Counter.sol b/examples/Counter.sol index 03a66058..c4eac089 100644 --- a/examples/Counter.sol +++ b/examples/Counter.sol @@ -5,7 +5,6 @@ pragma solidity ^0.8.24; /// @dev This contract provides functionality to increment the 'value' and read its current value contract Counter { /// @notice State variable to keep track of the count - /// @dev Stored as a uint32 to save gas uint32 value; /// @notice Increases the value by 1 each time this function is called