Fix buffer length in std::io::take
This only reads five bytes, so don't use a ten byte buffer, that's confusing.
This commit is contained in:
@@ -707,7 +707,7 @@ pub trait Read {
|
|||||||
///
|
///
|
||||||
/// # fn foo() -> io::Result<()> {
|
/// # fn foo() -> io::Result<()> {
|
||||||
/// let mut f = try!(File::open("foo.txt"));
|
/// let mut f = try!(File::open("foo.txt"));
|
||||||
/// let mut buffer = [0; 10];
|
/// let mut buffer = [0; 5];
|
||||||
///
|
///
|
||||||
/// // read at most five bytes
|
/// // read at most five bytes
|
||||||
/// let mut handle = f.take(5);
|
/// let mut handle = f.take(5);
|
||||||
|
|||||||
Reference in New Issue
Block a user