diff --git a/src/format.rs b/src/format.rs index 745cb5d..60bf4da 100644 --- a/src/format.rs +++ b/src/format.rs @@ -11,10 +11,10 @@ /// of format types to traits is: /// /// * `{}` ⇒ [`IdentFragment`] -/// * `{:o}` ⇒ [`Octal`](`std::fmt::Octal`) -/// * `{:x}` ⇒ [`LowerHex`](`std::fmt::LowerHex`) -/// * `{:X}` ⇒ [`UpperHex`](`std::fmt::UpperHex`) -/// * `{:b}` ⇒ [`Binary`](`std::fmt::Binary`) +/// * `{:o}` ⇒ [`Octal`](std::fmt::Octal) +/// * `{:x}` ⇒ [`LowerHex`](std::fmt::LowerHex) +/// * `{:X}` ⇒ [`UpperHex`](std::fmt::UpperHex) +/// * `{:b}` ⇒ [`Binary`](std::fmt::Binary) /// /// See [`std::fmt`] for more information. /// @@ -29,7 +29,7 @@ /// unsigned integers and strings. /// * [`Ident`] arguments will have their `r#` prefixes stripped, if present. /// -/// [`Ident`]: `proc_macro2::Ident` +/// [`Ident`]: proc_macro2::Ident /// ///
/// @@ -59,8 +59,8 @@ /// format_ident!("MyIdent", span = my_span); /// ``` /// -/// [`Span`]: `proc_macro2::Span` -/// [`Span::call_site`]: `proc_macro2::Span::call_site` +/// [`Span`]: proc_macro2::Span +/// [`Span::call_site`]: proc_macro2::Span::call_site /// ///


///