diff --git a/README.md b/README.md index 800d0f6..7cce04c 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ > This only supports Python 3. -A simple pure-python module to parse RFC822-like Debain data formats. +A simple pure-python module to parse RFC822-like Debian data formats. This can include: @@ -79,7 +79,7 @@ from debian_parser import PackagesParser sample_packages_file = open("Packages", "r").read() -parser = PackagesParser(sample_pacakges_file) +parser = PackagesParser(sample_packages_file) data = parser.parse() ``` @@ -251,7 +251,7 @@ data = parser.parse() It depends, if you need an a simple module to *read* and act upon RFC822-like Debain data formats, this might be a good alternative as compared to ``python-debian`` pacakge. -If you need manuiplate the data, or need more extensibility. It's probably best not to use this. +If you need manipulate the data, or need more extensibility. It's probably best not to use this. This module will **not** "verify" if the file provided is valid. Meaning it can fail catastrophically if invalid. Please ensure verification of the data before.. ***