diff --git a/src/hello/print/print_display/testcase_list.md b/src/hello/print/print_display/testcase_list.md index c72c197ed3..095e454fa0 100644 --- a/src/hello/print/print_display/testcase_list.md +++ b/src/hello/print/print_display/testcase_list.md @@ -24,8 +24,7 @@ struct List(Vec); impl fmt::Display for List { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { - // Extract the value using tuple indexing, - // and create a reference to `vec`. + // Create a reference to the Vec stored in the List struct. let vec = &self.0; write!(f, "[")?;