summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibCoreDump
diff options
context:
space:
mode:
authorLinus Groh <mail@linusgroh.de>2021-04-18 10:30:03 +0200
committerLinus Groh <mail@linusgroh.de>2021-04-18 10:30:03 +0200
commit2b0c361d04b519b20bfb70a34c07de579a93fafd (patch)
treef2a4d12d02801fe5bd0abf1ac2c068b540d75a45 /Userland/Libraries/LibCoreDump
parentcebd3f740b6fd2fd0da30ed92310a968cf6df44a (diff)
downloadserenity-2b0c361d04b519b20bfb70a34c07de579a93fafd.zip
Everywhere: Fix a bunch of typos
Diffstat (limited to 'Userland/Libraries/LibCoreDump')
-rw-r--r--Userland/Libraries/LibCoreDump/Reader.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibCoreDump/Reader.cpp b/Userland/Libraries/LibCoreDump/Reader.cpp
index fee4fd2f6a..aa4b9e4271 100644
--- a/Userland/Libraries/LibCoreDump/Reader.cpp
+++ b/Userland/Libraries/LibCoreDump/Reader.cpp
@@ -63,7 +63,7 @@ ByteBuffer Reader::decompress_coredump(const ReadonlyBytes& raw_coredump)
return ByteBuffer::copy(raw_coredump); // handle old format core dumps (uncompressed)
auto decompressed_coredump = Compress::GzipDecompressor::decompress_all(raw_coredump);
if (!decompressed_coredump.has_value())
- return ByteBuffer::copy(raw_coredump); // if we didnt manage to decompress it, try and parse it as decompressed core dump
+ return ByteBuffer::copy(raw_coredump); // if we didn't manage to decompress it, try and parse it as decompressed core dump
return decompressed_coredump.value();
}