diff --git a/MagicBytesValidator/Formats/Pdf.cs b/MagicBytesValidator/Formats/Pdf.cs
index 358f863..33f0276 100644
--- a/MagicBytesValidator/Formats/Pdf.cs
+++ b/MagicBytesValidator/Formats/Pdf.cs
@@ -12,7 +12,7 @@ public Pdf() : base(
StartsWith([0x25, 0x50, 0x44, 0x46, 0x2D])
.EndsWithAnyOf(
[
- [0x0A, 0x25, 0x25, 0x45, 0x4F, 0x46],
+ [0x25, 0x25, 0x45, 0x4F, 0x46],
[0x0A, 0x25, 0x25, 0x45, 0x4F, 0x46, 0x0A],
[0x0A, 0x25, 0x25, 0x45, 0x4F, 0x46, 0x0A, 0x20],
[0x0D, 0x0A, 0x25, 0x25, 0x45, 0x4F, 0x46, 0x0D, 0x0A],
diff --git a/MagicBytesValidator/MagicBytesValidator.csproj b/MagicBytesValidator/MagicBytesValidator.csproj
index 9bf4e43..550c7bf 100644
--- a/MagicBytesValidator/MagicBytesValidator.csproj
+++ b/MagicBytesValidator/MagicBytesValidator.csproj
@@ -4,7 +4,7 @@