1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 06:07:34 +00:00

Kernel: Fix a few typos

This commit is contained in:
Nico Weber 2021-09-30 19:48:31 -04:00 committed by Linus Groh
parent 890d5e45ee
commit 5a951d6258
5 changed files with 6 additions and 6 deletions

View file

@ -39,7 +39,7 @@ enum class NeedsBigProcessLock {
// NOTE: When declaring a new syscall or modifying an existing, please
// ensure that the proper assert is present at the top of the syscall
// implementation to both verify and document to any readers if the
// syscall aquires the big process lock or not. The asserts are:
// syscall acquires the big process lock or not. The asserts are:
// - VERIFY_PROCESS_BIG_LOCK_ACQUIRED(this)
// - VERIFY_NO_PROCESS_BIG_LOCK(this)
//