Fixed little typo

Serialie -> Serialize
This commit is contained in:
Estevan Castilho
2018-10-28 15:34:41 -03:00
committed by GitHub
parent b1266b48c4
commit 07b0b8b394

View File

@@ -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"));
PropertyListParser.SaveAsXml(root, new FileInfo("people.plist"));