From 7c1d241f2b6e811ca04791b365858f1351238e17 Mon Sep 17 00:00:00 2001 From: Nikolaos Chatzikonstantinou Date: Sat, 7 May 2022 19:32:54 +0900 Subject: [PATCH] Fix a minor typo in the description of Formatter --- library/core/src/fmt/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/core/src/fmt/mod.rs b/library/core/src/fmt/mod.rs index fac959ac734..feedc6456b8 100644 --- a/library/core/src/fmt/mod.rs +++ b/library/core/src/fmt/mod.rs @@ -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`. /// /// ```