Skip to content

Commit d08e68d

Browse files
authored
Merge pull request #1162 from crajcan/fix_for_loop_description
Fix for loop description in list print example
2 parents 50da1f6 + 21222b3 commit d08e68d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/hello/print/print_display/testcase_list.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ impl fmt::Display for List {
3838
3939
write!(f, "[")?;
4040
41-
// Iterate over `vec` in `v` while enumerating the iteration
41+
// Iterate over `v` in `vec` while enumerating the iteration
4242
// count in `count`.
4343
for (count, v) in vec.iter().enumerate() {
4444
// For every element except the first, add a comma.

0 commit comments

Comments
 (0)