Skip to content

Commit 145488f

Browse files
Jonathan Woollett-Lightpb8o
authored andcommitted
doc: Fix newlines in command
When `clap` parses the the input, it uses `,` as the separator, having additional spaces in-between elements breaks this parsing. Signed-off-by: Jonathan Woollett-Light <[email protected]>
1 parent a8c7caa commit 145488f

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

docs/tracing.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,10 @@ To enable tracing in Firecracker, add instrumentation with:
4646
clippy-tracing \
4747
--action fix \
4848
--path ./src \
49-
--exclude \
50-
benches,\
51-
virtio/gen,bindings.rs,net/gen,\
52-
log-instrument-macros/,log-instrument/,clippy-tracing/,\
53-
vmm_config/logger.rs,logger/,signal_handler.rs,time.rs
49+
--exclude benches \
50+
--exclude virtio/gen,bindings.rs,net/gen \
51+
--exclude log-instrument-macros/,log-instrument/,clippy-tracing/ \
52+
--exclude vmm_config/logger.rs,logger/,signal_handler.rs,time.rs
5453
```
5554

5655
`--exclude` can be used to avoid adding instrumentation to specific

0 commit comments

Comments
 (0)