From 51e7c2a53b81f2fb90f54837110f9f11fd3c5b4a Mon Sep 17 00:00:00 2001 From: bosd Date: Mon, 14 Oct 2024 13:04:12 +0200 Subject: [PATCH] [IMP] CLI Documentation Fixup explanation of the Hybrid and Network parser. --- camelot/cli.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/camelot/cli.py b/camelot/cli.py index 98693294..8ff57135 100644 --- a/camelot/cli.py +++ b/camelot/cli.py @@ -385,7 +385,7 @@ def stream(c, *args, **kwargs): @click.argument("filepath", type=click.Path(exists=True)) @pass_config def hybrid(c, *args, **kwargs): - """Use spaces between text to parse the table.""" + """Combines the strengths of both the Network and the Lattice parser.""" conf = c.config pages = conf.pop("pages") output = conf.pop("output") @@ -476,7 +476,7 @@ def hybrid(c, *args, **kwargs): @click.argument("filepath", type=click.Path(exists=True)) @pass_config def network(c, *args, **kwargs): - """Use spaces between text to parse the table.""" + """Use text alignments to parse the table.""" conf = c.config pages = conf.pop("pages") output = conf.pop("output")