From 23ca48ca9e56d280d12ff7c071dbd299bfe04d62 Mon Sep 17 00:00:00 2001 From: LukeMathWalker <20745048+LukeMathWalker@users.noreply.github.com> Date: Mon, 13 May 2024 14:03:49 +0200 Subject: [PATCH] Fix typo. --- exercises/06_ticket_management/10_slices/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/06_ticket_management/10_slices/src/lib.rs b/exercises/06_ticket_management/10_slices/src/lib.rs index bd16c52..1d2c6f7 100644 --- a/exercises/06_ticket_management/10_slices/src/lib.rs +++ b/exercises/06_ticket_management/10_slices/src/lib.rs @@ -1,4 +1,4 @@ -// TODO: Define a function named that takes a reference to a slice of `u32` and returns the sum of all +// TODO: Define a function named `sum` that takes a reference to a slice of `u32` and returns the sum of all // elements in the slice. #[cfg(test)] -- 2.45.2