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"