From 0ba4e38917075a90378b421bb143e86c76630295 Mon Sep 17 00:00:00 2001 From: dianakocsis Date: Wed, 18 Sep 2024 18:17:04 -0400 Subject: [PATCH] fix comment --- src/PositionDescriptor.sol | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/PositionDescriptor.sol b/src/PositionDescriptor.sol index 3b3467b4..1deb5426 100644 --- a/src/PositionDescriptor.sol +++ b/src/PositionDescriptor.sol @@ -45,7 +45,8 @@ contract PositionDescriptor is IPositionDescriptor { nativeCurrencyLabelBytes = _nativeCurrencyLabel; } - /// @notice Returns the native currency label as a string + /// @notice Takes the native currency label in bytes32 and returns it as a string + /// @return nativeCurrencyLabel The native currency label function nativeCurrencyLabel() public view returns (string memory) { uint256 len = 0; while (len < 32 && nativeCurrencyLabelBytes[len] != 0) {