Skip to content
This repository was archived by the owner on Mar 8, 2025. It is now read-only.

Commit

Permalink
fix: fixcommand line argument spacing in usage example
Browse files Browse the repository at this point in the history
This PR fixes a spacing issue in the command line example provided in the Usage section of the documentation. The `--l2.outputroot <L2_OUTPUT_ROOT>` argument was missing a space at the end, which could cause the command to be parsed incorrectly by the command-line interpreter. Adding a space ensures that the following `--datadir /tmp/fpp-database` parameter is recognized correctly.

Steps taken:
- Located the relevant section in the [document name] file.
- Added a space after `--l2.outputroot <L2_OUTPUT_ROOT>`.
  • Loading branch information
MelodyFish authored Jan 21, 2025
1 parent 1dbd8fd commit fc0ada5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cannon/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ make cannon
--l2.claim <L2_CLAIM> \
--l2.head <L2_HEAD> \
--l2.blocknumber <L2_BLOCK_NUMBER> \
--l2.outputroot <L2_OUTPUT_ROOT>
--l2.outputroot <L2_OUTPUT_ROOT> \
--datadir /tmp/fpp-database \
--log.format terminal \
--server
Expand Down

0 comments on commit fc0ada5

Please sign in to comment.