From 9a3602e70b865a3015bd700b30d1076e17511a9b Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Fri, 4 Mar 2022 08:57:11 -0800 Subject: [PATCH] doc update --- docs/lib.md | 4 +--- jc/lib.py | 4 +--- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/docs/lib.md b/docs/lib.md index e3fad7fa..b659b66d 100644 --- a/docs/lib.md +++ b/docs/lib.md @@ -36,9 +36,7 @@ Example: >>> jc.parse('date', 'Tue Jan 18 10:23:07 PST 2022') {'year': 2022, 'month': 'Jan', 'month_num': 1, 'day'...} -To get a list of available parser module names, use `parser_mod_list()` -or `plugin_parser_mod_list()`. `plugin_parser_mod_list()` is a subset -of `parser_mod_list()`. +To get a list of available parser module names, use `parser_mod_list()`. You can also use the lower-level parser modules directly: diff --git a/jc/lib.py b/jc/lib.py index 72b34d30..4252b864 100644 --- a/jc/lib.py +++ b/jc/lib.py @@ -175,9 +175,7 @@ def parse( >>> jc.parse('date', 'Tue Jan 18 10:23:07 PST 2022') {'year': 2022, 'month': 'Jan', 'month_num': 1, 'day'...} - To get a list of available parser module names, use `parser_mod_list()` - or `plugin_parser_mod_list()`. `plugin_parser_mod_list()` is a subset - of `parser_mod_list()`. + To get a list of available parser module names, use `parser_mod_list()`. You can also use the lower-level parser modules directly: