Skip to content

Commit 16181e6

Browse files
committed
Pick a feature name for write_char
1 parent 19cc943 commit 16181e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libcore/fmt/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ pub trait Write {
9393
/// # Errors
9494
///
9595
/// This function will return an instance of `FormatError` on error.
96-
#[stable(feature = "rust1", since = "1.1.0")]
96+
#[stable(feature = "fmt_write_char", since = "1.1.0")]
9797
fn write_char(&mut self, c: char) -> Result {
9898
let mut utf_8 = [0u8; 4];
9999
let bytes_written = c.encode_utf8(&mut utf_8).unwrap_or(0);

0 commit comments

Comments
 (0)