From c7bcb49319e1d6abbee411f62afc77ff15e8bd1e Mon Sep 17 00:00:00 2001 From: streamatron/ragebaiter Date: Tue, 31 Mar 2026 18:40:30 -0700 Subject: [PATCH] fix: clarify comment about tuple struct field access in testcase_list (#1876) --- src/hello/print/print_display/testcase_list.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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, "[")?;