Skip to content

Commit

Permalink
[IMP] CLI Documentation
Browse files Browse the repository at this point in the history
Fixup explanation of the Hybrid and Network parser.
  • Loading branch information
bosd committed Oct 14, 2024
1 parent 4c6720e commit 51e7c2a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions camelot/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down Expand Up @@ -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")
Expand Down

0 comments on commit 51e7c2a

Please sign in to comment.