From cfcbda235cf1b91e10c8739d42cd33d32ab13812 Mon Sep 17 00:00:00 2001 From: Vishal Pankaj Chandratreya <19171016+tfpf@users.noreply.github.com> Date: Sun, 26 May 2024 20:44:03 +0530 Subject: [PATCH] Updated documentation. --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index cb3abe5..33ab274 100644 --- a/src/main.rs +++ b/src/main.rs @@ -6,7 +6,7 @@ use std::io::Write; /// /// * `problem_number` /// -/// -> Flag indicating whether the solution is available. +/// Returns `true` if the solution was executed. Returns `false` otherwise. fn solve_and_time_one(problem_number: usize) -> bool { let solve = match problem_number { 1 => multiples_of_3_or_5::solve,