From 2129073c0358a2df45db5d01285596affa18d7f1 Mon Sep 17 00:00:00 2001 From: Nathan Stocks Date: Sun, 19 Dec 2021 14:00:25 -0700 Subject: [PATCH] fix which function was mentioned in testing exercise challenge --- exercise/testing/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/exercise/testing/src/lib.rs b/exercise/testing/src/lib.rs index 83c99b2..0ad2818 100644 --- a/exercise/testing/src/lib.rs +++ b/exercise/testing/src/lib.rs @@ -38,6 +38,6 @@ mod test { // // `cargo test` should run your `more_tests.rs` file and pass -// Challenge: Create a benchmark that measures the speed of splish(8, 9, 10) -// - Speed up the implementation of splish(8, 9, 10) without breaking the other tests. +// Challenge: Create a benchmark that measures the speed of sploosh(8, 9, 10) +// - Speed up the implementation of sploosh(8, 9, 10) without breaking the other tests. // - Hint: See Cargo.toml to get you started