From 77402aa4088620f4ebbba3a700872ec380bf1019 Mon Sep 17 00:00:00 2001 From: DoGoodCoder <141216093+LakshmiSrikumar@users.noreply.github.com> Date: Fri, 11 Oct 2024 10:45:54 +0530 Subject: [PATCH] Update non_preemptive_sjf_scheduling.cpp Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com> --- non_preemptive_sjf_scheduling.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/non_preemptive_sjf_scheduling.cpp b/non_preemptive_sjf_scheduling.cpp index 4f372bf05..d093623b0 100644 --- a/non_preemptive_sjf_scheduling.cpp +++ b/non_preemptive_sjf_scheduling.cpp @@ -34,7 +34,7 @@ using std::vector; * @tparam S Data type of Process ID * @tparam T Data type of Arrival time * @tparam E Data type of Burst time - * @param t1 First tuplet1 + * @param t1 tuple containing process id, arrival time and burst time * @param t2 tuple containing process id, arrival time and burst time * @returns true if t1 and t2 are in the CORRECT order * @returns false if t1 and t2 are in the INCORRECT order