diff --git a/content/code/seek-test.md b/content/code/seek-test.md index ec1f2dd..25fd1c4 100644 --- a/content/code/seek-test.md +++ b/content/code/seek-test.md @@ -67,7 +67,7 @@ async fn main() { let file = File::open(&file_name).await.unwrap(); let reader = BufReader::new(file); - // Here is why I can't seek after using `.lines()`: + // Here is why we need to the the `.into_inner()` later: // `.lines()` takes `self` and not `&self`. let mut lines = reader.lines();