From 07b0b8b39459b3018628a5e8976581a649e09463 Mon Sep 17 00:00:00 2001 From: Estevan Castilho Date: Sun, 28 Oct 2018 15:34:41 -0300 Subject: [PATCH] Fixed little typo Serialie -> Serialize --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 19f1fab..3faa64e 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ They originate from the NeXTSTEP programming environment and are now a basic par * Read / write property lists from / to files, streams or byte arrays * Convert between property lists formats * Property list contents are provided as objects from the NeXTSTEP environment (NSDictionary, NSArray, NSString, etc.) - * Serialie native .NET data structures to property list objects + * Serialize native .NET data structures to property list objects * Deserialize from property list objects to native .NET data structures ## Supported formats @@ -145,4 +145,4 @@ For converting a file into another format there exist convenience methods in the root.Add("People", people); // Save the property list - PropertyListParser.SaveAsXml(root, new FileInfo("people.plist")); \ No newline at end of file + PropertyListParser.SaveAsXml(root, new FileInfo("people.plist"));