docs: rewrite initial sentence for get_multiples_in_range

This commit is contained in:
rzmk 2023-09-21 00:35:41 -04:00
parent a8261965a6
commit aefec90457
No known key found for this signature in database

View file

@ -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
///