From 16fb443d0e047f389b23da5886ce5ee757b4ce26 Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Mon, 7 Aug 2023 10:46:08 -0300 Subject: [PATCH] Changed a comment to be more specific --- content/code/seek-test.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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();