diff --git a/exercises/practice/palindrome-products/src/lib.rs b/exercises/practice/palindrome-products/src/lib.rs index f4bec67e7..5b46d9c21 100644 --- a/exercises/practice/palindrome-products/src/lib.rs +++ b/exercises/practice/palindrome-products/src/lib.rs @@ -17,6 +17,6 @@ impl Palindrome { pub fn palindrome_products(min: u64, max: u64) -> Option<(Palindrome, Palindrome)> { todo!( - "returns the minimum and maximum number of palindromes of the products of two factors in the range {min} to {max}" + "returns the minimum palindrome and maximum palindrome of the products of two factors in the range {min} to {max}" ); }