From ac10e576c167d20de259e47a6aa5b23fc998b4c3 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Fri, 24 Jul 2020 16:29:27 -0700 Subject: [PATCH] spelling --- docs/parsers/ini.md | 4 ++-- jc/parsers/ini.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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