From 18589abe0c258a8c205fbe80146bd672291cf4f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcin=20Soko=C5=82owski?= Date: Fri, 16 May 2025 22:17:04 +0200 Subject: [PATCH] fix typo in structs3.rs --- exercises/07_structs/structs3.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/07_structs/structs3.rs b/exercises/07_structs/structs3.rs index 69e5ced7..97fb6a3e 100644 --- a/exercises/07_structs/structs3.rs +++ b/exercises/07_structs/structs3.rs @@ -29,7 +29,7 @@ impl Package { // is considered international. } - // TODO: Add the correct return type to the function signature. + // TODO: Add the correct return type to the function fees. fn get_fees(&self, cents_per_gram: u32) { // TODO: Calculate the package's fees. }