diff --git a/cpu_scheduling_algorithms/non_preemptive_sjf_scheduling.cpp b/cpu_scheduling_algorithms/non_preemptive_sjf_scheduling.cpp index d1935a4c8..7ce848412 100644 --- a/cpu_scheduling_algorithms/non_preemptive_sjf_scheduling.cpp +++ b/cpu_scheduling_algorithms/non_preemptive_sjf_scheduling.cpp @@ -310,7 +310,8 @@ static void test() { } /** - * @brief Entry point of the program + * @brief Main function + * @returns 0 on successful exit */ int main() { test();