Skip to content

Commit

Permalink
fix: fix typo in help page
Browse files Browse the repository at this point in the history
`it's` -> `its`

fixes #551

Signed-off-by: Jan Kowalleck <[email protected]>
  • Loading branch information
jkowalleck committed Jul 12, 2023
1 parent a262bdb commit e6c61ce
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ optional arguments:
-X Enable debug output
Input Method:
Flags to determine how this tool obtains it's input
Flags to determine how this tool obtains its input
-i FILE_PATH, --in-file FILE_PATH
File to read input from. Use "-" to read from STDIN.
Expand Down
2 changes: 1 addition & 1 deletion cyclonedx_py/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ def get_arg_parser(*, prog: Optional[str] = None) -> argparse.ArgumentParser:

input_method_group = arg_parser.add_argument_group(
title='Input Method',
description='Flags to determine how this tool obtains it\'s input'
description='Flags to determine how this tool obtains its input'
)
input_method_group.add_argument(
'-i', '--in-file', action='store', metavar='FILE_PATH',
Expand Down
2 changes: 1 addition & 1 deletion cyclonedx_py/utils/conda.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ def split_package_build_string(build_string: str) -> Tuple[str, Optional[int]]:

_pos = build_string.rindex('_') if '_' in build_string else -1
if _pos >= 1:
# Build number will be the last part - check if it's an integer
# Build number will be the last part - check if it is an integer
# Updated logic given https://github.com/CycloneDX/cyclonedx-python-lib/issues/65
build_number = build_string[_pos + 1:]
if build_number.isdigit():
Expand Down
2 changes: 1 addition & 1 deletion docs/usage.rst
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ The full documentation can be issued by running with ``--help``:
-X Enable debug output
Input Method:
Flags to determine how this tool obtains it's input
Flags to determine how this tool obtains its input
-i FILE_PATH, --in-file FILE_PATH
File to read input from, or STDIN if not specified
Expand Down

0 comments on commit e6c61ce

Please sign in to comment.