From 7c292dd0bf23cefcdf4b1509f3666322e08a7ede Mon Sep 17 00:00:00 2001 From: Lasse Collin Date: Sat, 13 Jul 2024 22:10:37 +0300 Subject: [PATCH] liblzma: Tweak a comment --- src/liblzma/simple/arm64.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/liblzma/simple/arm64.c b/src/liblzma/simple/arm64.c index 0a73f6c8..16c2f565 100644 --- a/src/liblzma/simple/arm64.c +++ b/src/liblzma/simple/arm64.c @@ -46,11 +46,11 @@ arm64_code(void *simple lzma_attribute((__unused__)), // The full 26-bit immediate is converted. // The range is +/-128 MiB. // - // Using the full range is helps quite a lot with + // Using the full range helps quite a lot with // big executables. Smaller range would reduce false // positives in non-code sections of the input though // so this is a compromise that slightly favors big - // files. With the full range only six bits of the 32 + // files. With the full range, only six bits of the 32 // need to match to trigger a conversion. const uint32_t src = instr; instr = 0x94000000;