From eca9239b5c9436308e6be02bbf9de69a55d74552 Mon Sep 17 00:00:00 2001 From: Johann Studanski Date: Tue, 21 Jan 2025 19:59:07 +0100 Subject: [PATCH] Fix typo --- plist-cil/BinaryPropertyListParser.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plist-cil/BinaryPropertyListParser.cs b/plist-cil/BinaryPropertyListParser.cs index c94fbe9..3dbeda4 100644 --- a/plist-cil/BinaryPropertyListParser.cs +++ b/plist-cil/BinaryPropertyListParser.cs @@ -158,7 +158,7 @@ namespace Claunia.PropertyList //Read all bytes into a list byte[] buf = PropertyListParser.ReadAll(fs); - // Don't close the stream - that would be the responisibility of code that class + // Don't close the stream - that would be the responsibility of code that class // Parse return Parse(buf); }