From fc0ada502949819728477cb48f9d7e1b59f6450a Mon Sep 17 00:00:00 2001 From: Kris <72598069+MelodyFish@users.noreply.github.com> Date: Tue, 21 Jan 2025 10:08:11 +0800 Subject: [PATCH] fix: fixcommand line argument spacing in usage example This PR fixes a spacing issue in the command line example provided in the Usage section of the documentation. The `--l2.outputroot ` 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 `. --- cannon/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cannon/README.md b/cannon/README.md index a3b917193901..671f40d1e6bc 100644 --- a/cannon/README.md +++ b/cannon/README.md @@ -55,7 +55,7 @@ make cannon --l2.claim \ --l2.head \ --l2.blocknumber \ - --l2.outputroot + --l2.outputroot \ --datadir /tmp/fpp-database \ --log.format terminal \ --server