summaryrefslogtreecommitdiff
path: root/Kernel/FileSystem/TmpFS.cpp
diff options
context:
space:
mode:
authormjz19910 <matthias291999@gmail.com>2022-01-07 05:04:05 -0700
committerLinus Groh <mail@linusgroh.de>2022-01-07 15:44:42 +0100
commit10ec98dd3852369834b6367da5615ec2a21846a3 (patch)
treeabbff764b730536f3595cae937f7b8ca86b44e2e /Kernel/FileSystem/TmpFS.cpp
parent168063819d009b34d43286c0367129592809a79d (diff)
downloadserenity-10ec98dd3852369834b6367da5615ec2a21846a3.zip
Everywhere: Fix spelling mistakes
Diffstat (limited to 'Kernel/FileSystem/TmpFS.cpp')
-rw-r--r--Kernel/FileSystem/TmpFS.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/FileSystem/TmpFS.cpp b/Kernel/FileSystem/TmpFS.cpp
index 93a1fbeb26..440e63cd4c 100644
--- a/Kernel/FileSystem/TmpFS.cpp
+++ b/Kernel/FileSystem/TmpFS.cpp
@@ -162,7 +162,7 @@ ErrorOr<size_t> TmpFSInode::write_bytes(off_t offset, size_t size, const UserOrK
if (m_content && static_cast<off_t>(m_content->capacity()) >= new_size) {
m_content->set_size(new_size);
} else {
- // Grow the content buffer 2x the new sizeto accommodate repeating write() calls.
+ // Grow the content buffer 2x the new size to accommodate repeating write() calls.
// Note that we're not actually committing physical memory to the buffer
// until it's needed. We only grow VM here.