forked from mirror/async-std
fix counting lines example
This commit is contained in:
parent
0156dc879b
commit
04cafeab2c
1 changed files with 1 additions and 1 deletions
|
@ -149,7 +149,7 @@ pub trait BufRead {
|
|||
/// let mut lines = BufReader::new(file).lines();
|
||||
/// let mut count = 0;
|
||||
///
|
||||
/// for line in lines.next().await {
|
||||
/// while let Some(line) = lines.next().await {
|
||||
/// line?;
|
||||
/// count += 1;
|
||||
/// }
|
||||
|
|
Loading…
Reference in a new issue