Skip to content

Commit bc5fe57

Browse files
fix: add a missing space in the help pages pathto -> path to (#443)
* docs: fix typo `pathto` -> `path to` * fix(help): added the missing space `pathto` -> `path to` Signed-off-by: Jan Kowalleck <[email protected]> Co-authored-by: Jan Kowalleck <[email protected]>
1 parent b2a97e0 commit bc5fe57

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,16 +69,16 @@ optional arguments:
6969
Build a SBOM based on the packages installed in your
7070
current Python environment (default)
7171
-p, --p, --poetry Build a SBOM based on a Poetry poetry.lock's contents.
72-
Use with -i to specify absolute pathto a `poetry.lock`
72+
Use with -i to specify absolute path to a `poetry.lock`
7373
you wish to use, else we'll look for one in the
7474
current working directory.
7575
-pip, --pip Build a SBOM based on a PipEnv Pipfile.lock's
76-
contents. Use with -i to specify absolute pathto a
76+
contents. Use with -i to specify absolute path to a
7777
`Pipefile.lock` you wish to use, else we'll look for
7878
one in the current working directory.
7979
-r, --r, --requirements
8080
Build a SBOM based on a requirements.txt's contents.
81-
Use with -i to specify absolute pathto a
81+
Use with -i to specify absolute path to a
8282
`requirements.txt` you wish to use, else we'll look
8383
for one in the current working directory.
8484
-X Enable debug output

cyclonedx_py/client.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -179,19 +179,19 @@ def get_arg_parser(*, prog: Optional[str] = None) -> argparse.ArgumentParser:
179179
)
180180
input_group.add_argument(
181181
'-p', '--p', '--poetry', action='store_true',
182-
help='Build a SBOM based on a Poetry poetry.lock\'s contents. Use with -i to specify absolute path'
182+
help='Build a SBOM based on a Poetry poetry.lock\'s contents. Use with -i to specify absolute path '
183183
'to a `poetry.lock` you wish to use, else we\'ll look for one in the current working directory.',
184184
dest='input_from_poetry'
185185
)
186186
input_group.add_argument(
187187
'-pip', '--pip', action='store_true',
188-
help='Build a SBOM based on a PipEnv Pipfile.lock\'s contents. Use with -i to specify absolute path'
188+
help='Build a SBOM based on a PipEnv Pipfile.lock\'s contents. Use with -i to specify absolute path '
189189
'to a `Pipefile.lock` you wish to use, else we\'ll look for one in the current working directory.',
190190
dest='input_from_pip'
191191
)
192192
input_group.add_argument(
193193
'-r', '--r', '--requirements', action='store_true',
194-
help='Build a SBOM based on a requirements.txt\'s contents. Use with -i to specify absolute path'
194+
help='Build a SBOM based on a requirements.txt\'s contents. Use with -i to specify absolute path '
195195
'to a `requirements.txt` you wish to use, else we\'ll look for one in the current working directory.',
196196
dest='input_from_requirements'
197197
)

docs/usage.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,16 +33,16 @@ The full documentation can be issued by running with ``--help``:
3333
Build a SBOM based on the packages installed in your
3434
current Python environment (default)
3535
-p, --p, --poetry Build a SBOM based on a Poetry poetry.lock's contents.
36-
Use with -i to specify absolute pathto a `poetry.lock`
36+
Use with -i to specify absolute path to a `poetry.lock`
3737
you wish to use, else we'll look for one in the
3838
current working directory.
3939
-pip, --pip Build a SBOM based on a PipEnv Pipfile.lock's
40-
contents. Use with -i to specify absolute pathto a
40+
contents. Use with -i to specify absolute path to a
4141
`Pipefile.lock` you wish to use, else we'll look for
4242
one in the current working directory.
4343
-r, --r, --requirements
4444
Build a SBOM based on a requirements.txt's contents.
45-
Use with -i to specify absolute pathto a
45+
Use with -i to specify absolute path to a
4646
`requirements.txt` you wish to use, else we'll look
4747
for one in the current working directory.
4848
-X Enable debug output

0 commit comments

Comments
 (0)