]> git.ipfire.org Git - thirdparty/xz.git/commitdiff
liblzma: Tweak a comment
authorLasse Collin <lasse.collin@tukaani.org>
Sat, 13 Jul 2024 19:10:37 +0000 (22:10 +0300)
committerLasse Collin <lasse.collin@tukaani.org>
Fri, 6 Sep 2024 16:33:20 +0000 (19:33 +0300)
(cherry picked from commit 7c292dd0bf23cefcdf4b1509f3666322e08a7ede)

src/liblzma/simple/arm64.c

index 0a73f6c8bf2d4524ccc2186a8bb28405102322c9..16c2f565f73df85cf20d3117ef686ccb8277ff3a 100644 (file)
@@ -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;