We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e7fcc4 commit 7f25185Copy full SHA for 7f25185
src/libcore/fmt/mod.rs
@@ -72,7 +72,7 @@ pub trait Write {
72
///
73
/// # Errors
74
75
- /// This function will return an instance of `FormatError` on error.
+ /// This function will return an instance of `Error` on error.
76
#[stable(feature = "rust1", since = "1.0.0")]
77
fn write_str(&mut self, s: &str) -> Result;
78
@@ -85,7 +85,7 @@ pub trait Write {
85
86
87
88
89
#[stable(feature = "fmt_write_char", since = "1.1.0")]
90
fn write_char(&mut self, c: char) -> Result {
91
let mut utf_8 = [0u8; 4];
0 commit comments