Rollup merge of #96811 - createyourpersonalaccount:doc-typofix, r=JohnTitor

Fix a minor typo in the description of Formatter
This commit is contained in:
Guillaume Gomez 2022-05-07 15:23:50 +02:00 committed by GitHub
commit c6007d6b57
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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`.
///
/// ```