about summary refs log tree commit diff
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume1.gomez@gmail.com>2022-05-07 15:23:50 +0200
committerGitHub <noreply@github.com>2022-05-07 15:23:50 +0200
commitc6007d6b5778c4ba2d31b7b8e201e4ee23c6561d (patch)
tree86549541059310d8c7c837be0b5003d007a85978
parentaf2f9447e9295711908a5097768363c42096f12c (diff)
parent7c1d241f2b6e811ca04791b365858f1351238e17 (diff)
downloadrust-c6007d6b5778c4ba2d31b7b8e201e4ee23c6561d.tar.gz
rust-c6007d6b5778c4ba2d31b7b8e201e4ee23c6561d.zip
Rollup merge of #96811 - createyourpersonalaccount:doc-typofix, r=JohnTitor
Fix a minor typo in the description of Formatter
-rw-r--r--library/core/src/fmt/mod.rs2
1 files changed, 1 insertions, 1 deletions
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`.
 ///
 /// ```