From 10d1084e85bdcfdbf582f73291c2e0c17b1c394d Mon Sep 17 00:00:00 2001 From: David Barsky Date: Mon, 25 Sep 2023 17:27:59 -0700 Subject: [PATCH] tracing: fix extra comma --- tracing/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tracing/src/lib.rs b/tracing/src/lib.rs index 9dd020162c..2d50cfa1d0 100644 --- a/tracing/src/lib.rs +++ b/tracing/src/lib.rs @@ -214,7 +214,7 @@ //! ### Configuring Attributes //! //! Both macros require a [`Level`] specifying the verbosity of the span or -//! event. Optionally, the, [target] and [parent span] may be overridden. If the +//! event. Optionally, the [target] and [parent span] may be overridden. If the //! target and parent span are not overridden, they will default to the //! module path where the macro was invoked and the current span (as determined //! by the subscriber), respectively.