Skip to content

Commit 6b2b476

Browse files
authored
fix typo on line 126 (#5768)
1 parent dbddac7 commit 6b2b476

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: scheduling/shortest_job_first.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ def calculate_average_times(
123123
processes = list(range(1, no_of_processes + 1))
124124

125125
for i in range(no_of_processes):
126-
print("Enter the arrival time and brust time for process:--" + str(i + 1))
126+
print("Enter the arrival time and burst time for process:--" + str(i + 1))
127127
arrival_time[i], burst_time[i] = map(int, input().split())
128128

129129
waiting_time = calculate_waitingtime(arrival_time, burst_time, no_of_processes)

0 commit comments

Comments
 (0)