Fix unclosed HTML tag in rustfmt doc

This commit is contained in:
Guillaume Gomez 2022-10-10 18:29:17 +02:00
parent d71413cbfa
commit 7cc303fbf6

View File

@ -4,7 +4,7 @@ use crate::config::options::{IgnoreList, WidthHeuristics};
/// Trait for types that can be used in `Config`.
pub(crate) trait ConfigType: Sized {
/// Returns hint text for use in `Config::print_docs()`. For enum types, this is a
/// pipe-separated list of variants; for other types it returns "<type>".
/// pipe-separated list of variants; for other types it returns `<type>`.
fn doc_hint() -> String;
}