From 47f6079a429d621da3f203ca3348995f31e21365 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Lo=C3=9Fin?= Date: Sat, 15 Aug 2020 22:50:39 +0200 Subject: [PATCH] Fix grammar --- src/Tar.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Tar.php b/src/Tar.php index 9550b6c..93483f6 100644 --- a/src/Tar.php +++ b/src/Tar.php @@ -583,7 +583,7 @@ protected function parseHeader($block) $return['checksum'] = OctDec(trim($header['checksum'])); if ($return['checksum'] != $chks) { - throw new ArchiveCorruptedException('Header does not match it\'s checksum'); + throw new ArchiveCorruptedException('Header does not match its checksum'); } $return['filename'] = trim($header['filename']);