Skip to content

Commit f622a1e

Browse files
authored
docs: fix backporting error in attributes (#2780)
There was an error when backporting #1378 (here: #1418) and a trailing dot (.) was forgotten (which was breaking the link). Fixed also the link to `std::fmt::Debug`.
1 parent 4161d81 commit f622a1e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tracing-attributes/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,10 +96,10 @@ mod expand;
9696
/// By default, all arguments to the function are included as fields on the
9797
/// span. Arguments that are `tracing` [primitive types] implementing the
9898
/// [`Value` trait] will be recorded as fields of that type. Types which do
99-
/// not implement `Value` will be recorded using [`std::fmt::Debug`].
99+
/// not implement `Value` will be recorded using [`fmt::Debug`].
100100
///
101101
/// [primitive types]: https://docs.rs/tracing/latest/tracing/field/trait.Value.html#foreign-impls
102-
/// [`Value` trait]: https://docs.rs/tracing/latest/tracing/field/trait.Value.html.
102+
/// [`Value` trait]: https://docs.rs/tracing/latest/tracing/field/trait.Value.html
103103
///
104104
/// # Overriding Span Attributes
105105
///

0 commit comments

Comments
 (0)