Improve the explanation about the behaviour of read_line
This commit is contained in:
parent
3ba1ebea12
commit
7da07ff48b
1 changed files with 1 additions and 1 deletions
|
@ -2110,7 +2110,7 @@ pub trait BufRead: Read {
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Read all bytes until a newline (the `0xA` byte) is reached, and append
|
/// Read all bytes until a newline (the `0xA` byte) is reached, and append
|
||||||
/// them to the provided buffer.
|
/// them to the provided buffer (without clear buffer before appending to it).
|
||||||
///
|
///
|
||||||
/// This function will read bytes from the underlying stream until the
|
/// This function will read bytes from the underlying stream until the
|
||||||
/// newline delimiter (the `0xA` byte) or EOF is found. Once found, all bytes
|
/// newline delimiter (the `0xA` byte) or EOF is found. Once found, all bytes
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue