From: LukeMathWalker <20745048+LukeMathWalker@users.noreply.github.com> Date: Mon, 13 May 2024 12:03:49 +0000 (+0200) Subject: Fix typo. X-Git-Url: http://git.euphorik.ch/?a=commitdiff_plain;h=23ca48ca9e56d280d12ff7c071dbd299bfe04d62;p=rust_exercises.git Fix typo. --- 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)]