diff --git a/docs/readme.md b/docs/readme.md index c37e2230..2d2f1a79 100644 --- a/docs/readme.md +++ b/docs/readme.md @@ -9,9 +9,9 @@ and file-types to dictionaries and lists of dictionaries. ## Interactive Documentation - >>> help(jc) - >>> help(jc.lib) - >>> help(jc.utils) + >>> help('jc') + >>> help('jc.lib') + >>> help('jc.utils') >>> jc.get_help('parser_module_name') ## Online Documentation diff --git a/jc/__init__.py b/jc/__init__.py index f192a500..0579852b 100644 --- a/jc/__init__.py +++ b/jc/__init__.py @@ -7,9 +7,9 @@ and file-types to dictionaries and lists of dictionaries. ## Interactive Documentation - >>> help(jc) - >>> help(jc.lib) - >>> help(jc.utils) + >>> help('jc') + >>> help('jc.lib') + >>> help('jc.utils') >>> jc.get_help('parser_module_name') ## Online Documentation