From c2bc68a5109ca3b85bec12af83cc7c2a4010fa64 Mon Sep 17 00:00:00 2001 From: andreivladbrg Date: Thu, 11 Apr 2024 12:42:27 +0300 Subject: [PATCH] chore: improve wording in explanatory comments --- src/SablierV2OpenEnded.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/SablierV2OpenEnded.sol b/src/SablierV2OpenEnded.sol index b03a034d..f1a21656 100644 --- a/src/SablierV2OpenEnded.sol +++ b/src/SablierV2OpenEnded.sol @@ -438,7 +438,7 @@ contract SablierV2OpenEnded is ISablierV2OpenEnded, NoDelegateCall, SablierV2Ope uint8 assetDecimals = _safeAssetDecimals(address(asset)); - // Checks: the asset has decimals. + // Checks: the asset does not have decimals. if (assetDecimals == 0) { revert Errors.SablierV2OpenEnded_InvalidAssetDecimals(asset); } @@ -460,7 +460,7 @@ contract SablierV2OpenEnded is ISablierV2OpenEnded, NoDelegateCall, SablierV2Ope }); // Effects: bump the next stream id. - // Using unchecked arithmetic because these calculations cannot realistically overflow, ever. + // Using unchecked arithmetic because this calculation cannot realistically overflow, ever. unchecked { nextStreamId = streamId + 1; }