diff options
| author | Simon Sapin <simon.sapin@exyr.org> | 2015-04-21 18:06:00 +0200 |
|---|---|---|
| committer | Simon Sapin <simon.sapin@exyr.org> | 2015-04-21 18:06:00 +0200 |
| commit | 19cc9435d9e11ea318eb03420777898f5159e810 (patch) | |
| tree | 4c6b5634dac4f5b09b4a701b3bb6ec09a781ec2a /src | |
| parent | 265a7cc3bde71bf34f6b2cfea6353ede20bfd7a5 (diff) | |
| download | rust-19cc9435d9e11ea318eb03420777898f5159e810.tar.gz rust-19cc9435d9e11ea318eb03420777898f5159e810.zip | |
write_char is unlikely to make it for 1.0, it’ll be 1.1
Diffstat (limited to 'src')
| -rw-r--r-- | src/libcore/fmt/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/fmt/mod.rs b/src/libcore/fmt/mod.rs index 85226444e84..8e2138bcbf6 100644 --- a/src/libcore/fmt/mod.rs +++ b/src/libcore/fmt/mod.rs @@ -93,7 +93,7 @@ pub trait Write { /// # Errors /// /// This function will return an instance of `FormatError` on error. - #[stable(feature = "rust1", since = "1.0.0")] + #[stable(feature = "rust1", since = "1.1.0")] fn write_char(&mut self, c: char) -> Result { let mut utf_8 = [0u8; 4]; let bytes_written = c.encode_utf8(&mut utf_8).unwrap_or(0); |
