From aa3521288c3c09bffbb104cc685d8ed1b5c4b790 Mon Sep 17 00:00:00 2001 From: rzmk Date: Thu, 21 Sep 2023 16:51:05 -0400 Subject: [PATCH] docs: remove redundant sentence for get_multiples_in_range --- ladderz/src/pre_algebra/unit1.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/ladderz/src/pre_algebra/unit1.rs b/ladderz/src/pre_algebra/unit1.rs index d14467a..c1b1737 100644 --- a/ladderz/src/pre_algebra/unit1.rs +++ b/ladderz/src/pre_algebra/unit1.rs @@ -123,8 +123,6 @@ pub fn is_multiple(x: u32, y: u32) -> bool { /// Finds all the multiples of a positive integer `n` up to and including `end` (in the range [n, end]). /// -/// Returns a `HashSet` containing all the multiples of a positive integer `n` in the range [n, end]. -/// /// A multiple of `n` is a positive integer `num` where `num` is evenly divisible by `n` (i.e., `num % n == 0`). /// /// # Examples