From 52a0d99e69f56b9ec27ace92ba56897fe6993105 Mon Sep 17 00:00:00 2001 From: Paragon Initiative Enterprises Date: Wed, 8 May 2024 08:18:48 -0400 Subject: [PATCH] Fix grammar on comment --- src/Base64.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Base64.php b/src/Base64.php index e75aa4f..2e3ecc8 100644 --- a/src/Base64.php +++ b/src/Base64.php @@ -245,7 +245,7 @@ public static function decodeNoPadding( return ''; } if (($srcLen & 3) === 0) { - // If $strLen is not zero and it is divisible by 4, then its at least 4. + // If $strLen is not zero, and it is divisible by 4, then it's at least 4. if ($encodedString[$srcLen - 1] === '=' || $encodedString[$srcLen - 2] === '=') { throw new InvalidArgumentException( "decodeNoPadding() doesn't tolerate padding"