Skip to content

Commit

Permalink
tools: properties: correct tool description and usage
Browse files Browse the repository at this point in the history
Closes #568
  • Loading branch information
elopez committed Feb 17, 2024
1 parent 65fcb4b commit 261182f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions slither/tools/properties/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,13 +68,13 @@ def parse_args() -> argparse.Namespace:
:return: Returns the arguments for the program.
"""
parser = argparse.ArgumentParser(
description="Demo",
usage="slither-demo filename",
description="Generates code properties (e.g., invariants) that can be tested with unit tests or Echidna, entirely automatically.",
usage="slither-prop filename",
formatter_class=argparse.RawDescriptionHelpFormatter,
)

parser.add_argument(
"filename", help="The filename of the contract or truffle directory to analyze."
"filename", help="The filename of the contract or project directory to analyze."
)

parser.add_argument("--contract", help="The targeted contract.")
Expand Down

0 comments on commit 261182f

Please sign in to comment.