From 145488fb4b804a510d19f8aa5014d5d630cc9da5 Mon Sep 17 00:00:00 2001 From: Jonathan Woollett-Light Date: Mon, 4 Dec 2023 12:03:06 +0000 Subject: [PATCH] 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 --- docs/tracing.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/docs/tracing.md b/docs/tracing.md index 4a9dfac5ee7..e5d9b9b6d59 100644 --- a/docs/tracing.md +++ b/docs/tracing.md @@ -46,11 +46,10 @@ To enable tracing in Firecracker, add instrumentation with: clippy-tracing \ --action fix \ --path ./src \ - --exclude \ - benches,\ - virtio/gen,bindings.rs,net/gen,\ - log-instrument-macros/,log-instrument/,clippy-tracing/,\ - vmm_config/logger.rs,logger/,signal_handler.rs,time.rs + --exclude benches \ + --exclude virtio/gen,bindings.rs,net/gen \ + --exclude log-instrument-macros/,log-instrument/,clippy-tracing/ \ + --exclude vmm_config/logger.rs,logger/,signal_handler.rs,time.rs ``` `--exclude` can be used to avoid adding instrumentation to specific