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 19cc943 commit 16181e6Copy full SHA for 16181e6
src/libcore/fmt/mod.rs
@@ -93,7 +93,7 @@ pub trait Write {
93
/// # Errors
94
///
95
/// This function will return an instance of `FormatError` on error.
96
- #[stable(feature = "rust1", since = "1.1.0")]
+ #[stable(feature = "fmt_write_char", since = "1.1.0")]
97
fn write_char(&mut self, c: char) -> Result {
98
let mut utf_8 = [0u8; 4];
99
let bytes_written = c.encode_utf8(&mut utf_8).unwrap_or(0);
0 commit comments