Fix a minor typo in the description of Formatter

This commit is contained in:
Nikolaos Chatzikonstantinou 2022-05-07 19:32:54 +09:00
parent 574830f573
commit 7c1d241f2b
No known key found for this signature in database
GPG Key ID: 0ED351EB371E6448

View File

@ -600,7 +600,7 @@ impl Display for Arguments<'_> {
///
/// Types that do not wish to use the standard suite of debug representations
/// provided by the `Formatter` trait (`debug_struct`, `debug_tuple`,
/// `debut_list`, `debug_set`, `debug_map`) can do something totally custom by
/// `debug_list`, `debug_set`, `debug_map`) can do something totally custom by
/// manually writing an arbitrary representation to the `Formatter`.
///
/// ```