Skip to content

Commit 4d071e3

Browse files
committed
Resolve doc_overindented_list_items clippy lint
warning: doc list item overindented --> src/format.rs:29:5 | 29 | /// unsigned integers and strings. | ^^^ help: try using ` ` (2 spaces) | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_overindented_list_items = note: `-W clippy::doc-overindented-list-items` implied by `-W clippy::all` = help: to override `-W clippy::all` add `#[allow(clippy::doc_overindented_list_items)]`
1 parent 908ddbd commit 4d071e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/format.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
/// default. This trait is like `Display`, with a few differences:
2727
///
2828
/// * `IdentFragment` is only implemented for a limited set of types, such as
29-
/// unsigned integers and strings.
29+
/// unsigned integers and strings.
3030
/// * [`Ident`] arguments will have their `r#` prefixes stripped, if present.
3131
///
3232
/// [`IdentFragment`]: crate::IdentFragment

0 commit comments

Comments
 (0)