From 6b6d99725afde169cbf93b057f4a7e28623eccc2 Mon Sep 17 00:00:00 2001 From: Shyeonn Date: Sun, 5 Mar 2023 04:06:51 -0800 Subject: [PATCH] Fix typo --- threads/thread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/threads/thread.c b/threads/thread.c index bc9e260..5ce8350 100644 --- a/threads/thread.c +++ b/threads/thread.c @@ -562,7 +562,7 @@ schedule (void) { thread. This must happen late so that thread_exit() doesn't pull out the rug under itself. We just queuing the page free reqeust here because the page is - currently used bye the stack. + currently used by the stack. The real destruction logic will be called at the beginning of the schedule(). */ if (curr && curr->status == THREAD_DYING && curr != initial_thread) {