fmt::Write is about string slices, not byte slices
This commit is contained in:
parent
53aca553ec
commit
e490aaea7e
1 changed files with 2 additions and 2 deletions
|
@ -108,10 +108,10 @@ pub struct Error;
|
||||||
/// [`io::Write`]: ../../std/io/trait.Write.html
|
/// [`io::Write`]: ../../std/io/trait.Write.html
|
||||||
#[stable(feature = "rust1", since = "1.0.0")]
|
#[stable(feature = "rust1", since = "1.0.0")]
|
||||||
pub trait Write {
|
pub trait Write {
|
||||||
/// Writes a slice of bytes into this writer, returning whether the write
|
/// Writes a string slice into this writer, returning whether the write
|
||||||
/// succeeded.
|
/// succeeded.
|
||||||
///
|
///
|
||||||
/// This method can only succeed if the entire byte slice was successfully
|
/// This method can only succeed if the entire string slice was successfully
|
||||||
/// written, and this method will not return until all data has been
|
/// written, and this method will not return until all data has been
|
||||||
/// written or an error occurs.
|
/// written or an error occurs.
|
||||||
///
|
///
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue