From 7bb3b2839eaa5b138af6527bb22053dc11776a1a Mon Sep 17 00:00:00 2001 From: Idan Horowitz Date: Tue, 7 Sep 2021 23:13:14 +0300 Subject: [PATCH] Kernel: Fix a typo in LockRank::Process's comment --- Kernel/Locking/LockRank.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Kernel/Locking/LockRank.h b/Kernel/Locking/LockRank.h index 38c76f7237..9aff2bf6c0 100644 --- a/Kernel/Locking/LockRank.h +++ b/Kernel/Locking/LockRank.h @@ -31,7 +31,7 @@ enum class LockRank : int { Thread = 0x008, - // Process locks are the lowest rank, as they normally are taken + // Process locks are the highest rank, as they normally are taken // first thing when processing syscalls. Process = 0x010, };