diff options
author | Idan Horowitz <idan.horowitz@gmail.com> | 2021-09-07 23:13:14 +0300 |
---|---|---|
committer | Idan Horowitz <idan.horowitz@gmail.com> | 2021-09-08 19:17:07 +0300 |
commit | 7bb3b2839eaa5b138af6527bb22053dc11776a1a (patch) | |
tree | c8965bb84add5fb7b803fb0a67440565d622fda2 /Kernel/Locking | |
parent | 2572f5ebec5a8e1c4afb8d7a0808263b186091dd (diff) | |
download | serenity-7bb3b2839eaa5b138af6527bb22053dc11776a1a.zip |
Kernel: Fix a typo in LockRank::Process's comment
Diffstat (limited to 'Kernel/Locking')
-rw-r--r-- | Kernel/Locking/LockRank.h | 2 |
1 files changed, 1 insertions, 1 deletions
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, }; |