X-Git-Url: https://git.ralfj.de/rust-101.git/blobdiff_plain/7b5af93d756464638204b0b703485712d88d3656..7c63fce3ed1474437f62a5f14cbd9fa398ec9abe:/workspace/src/part03.rs diff --git a/workspace/src/part03.rs b/workspace/src/part03.rs index 5a5327c..152b525 100644 --- a/workspace/src/part03.rs +++ b/workspace/src/part03.rs @@ -10,7 +10,7 @@ use std::io; fn read_vec() -> Vec { let mut vec: Vec = Vec::::new(); - // The central handle to the standard input is made available by `io::stdin()`. + // The central handle to the standard input is made available by the function `io::stdin`. let stdin = io::stdin(); println!("Enter a list of numbers, one per line. End with Ctrl-D."); for line in stdin.lock().lines() {