diff --git a/src/hello/print/print_display/testcase_list.md b/src/hello/print/print_display/testcase_list.md index 94faa75cf0..d67d988bed 100644 --- a/src/hello/print/print_display/testcase_list.md +++ b/src/hello/print/print_display/testcase_list.md @@ -38,7 +38,7 @@ impl fmt::Display for List { write!(f, "[")?; - // Iterate over `vec` in `v` while enumerating the iteration + // Iterate over `v` in `vec` while enumerating the iteration // count in `count`. for (count, v) in vec.iter().enumerate() { // For every element except the first, add a comma.