diff options
author | Linus Groh <mail@linusgroh.de> | 2021-04-18 10:30:03 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-04-18 10:30:03 +0200 |
commit | 2b0c361d04b519b20bfb70a34c07de579a93fafd (patch) | |
tree | f2a4d12d02801fe5bd0abf1ac2c068b540d75a45 /Kernel/Syscalls | |
parent | cebd3f740b6fd2fd0da30ed92310a968cf6df44a (diff) | |
download | serenity-2b0c361d04b519b20bfb70a34c07de579a93fafd.zip |
Everywhere: Fix a bunch of typos
Diffstat (limited to 'Kernel/Syscalls')
-rw-r--r-- | Kernel/Syscalls/mmap.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Syscalls/mmap.cpp b/Kernel/Syscalls/mmap.cpp index 477fe14aef..9d44a0c673 100644 --- a/Kernel/Syscalls/mmap.cpp +++ b/Kernel/Syscalls/mmap.cpp @@ -506,7 +506,7 @@ KResultOr<int> Process::sys$munmap(Userspace<void*> addr, size_t size) // slow: without caching const auto& regions = space().find_regions_intersecting(range_to_unmap); - // check if any of the regions is not mmaped, to not accientally + // check if any of the regions is not mmapped, to not accientally // error-out with just half a region map left for (auto* region : regions) { if (!region->is_mmap()) |