From aefec90457917cfa2a9ab9c3778e04d76d318b89 Mon Sep 17 00:00:00 2001 From: rzmk Date: Thu, 21 Sep 2023 00:35:41 -0400 Subject: [PATCH] docs: rewrite initial sentence for get_multiples_in_range --- ladderz/src/pre_algebra/unit1.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ladderz/src/pre_algebra/unit1.rs b/ladderz/src/pre_algebra/unit1.rs index ef8fc9f..2b23202 100644 --- a/ladderz/src/pre_algebra/unit1.rs +++ b/ladderz/src/pre_algebra/unit1.rs @@ -183,7 +183,7 @@ pub fn is_multiple(x: u32, y: u32) -> bool { x % y == 0 } -/// Returns a HashSet containing all the multiples of a positive integer `n` in the range [n, end]. +/// Finds all the multiples of a positive integer `n` up to and including `end` (in the range [n, end]). /// /// # Challenge ///