diff --git a/docs/parsers/ini.md b/docs/parsers/ini.md index 93e6091b..4067caca 100644 --- a/docs/parsers/ini.md +++ b/docs/parsers/ini.md @@ -63,14 +63,14 @@ Parameters: Returns: - Dictionary representing an ini document: + Dictionary representing an ini or simple key/value pair document: { ini or key/value document converted to a dictionary - see configparser standard library documentation for more details. Note: Values starting and ending with quotation marks will have the marks removed. - If you would like to keep the quotation markes, use the -r or raw=True argument. + If you would like to keep the quotation marks, use the -r or raw=True argument. } ## parse diff --git a/jc/parsers/ini.py b/jc/parsers/ini.py index 86f8237d..a24be21c 100644 --- a/jc/parsers/ini.py +++ b/jc/parsers/ini.py @@ -72,14 +72,14 @@ def process(proc_data): Returns: - Dictionary representing an ini document: + Dictionary representing an ini or simple key/value pair document: { ini or key/value document converted to a dictionary - see configparser standard library documentation for more details. Note: Values starting and ending with quotation marks will have the marks removed. - If you would like to keep the quotation markes, use the -r or raw=True argument. + If you would like to keep the quotation marks, use the -r or raw=True argument. } """ # remove quotation marks from beginning and end of values