From 2cbeda847bb58bfac73d2048e3e0300ff1b2b894 Mon Sep 17 00:00:00 2001 From: Paul Pluzhnikov Date: Fri, 2 Jun 2023 03:40:12 +0000 Subject: Fix a few more typos I missed in previous round -- BZ 25337 --- scripts/sort-makefile-lines.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'scripts') diff --git a/scripts/sort-makefile-lines.py b/scripts/sort-makefile-lines.py index c0badebf8c..8a1bc3f48b 100755 --- a/scripts/sort-makefile-lines.py +++ b/scripts/sort-makefile-lines.py @@ -38,7 +38,7 @@ # Sorting is only carried out between two special markers: # (a) Marker start is ' += \' (or '= \', or ':= \') # (b) Marker end is ' # ' (whitespace matters) -# With everthing between (a) and (b) being sorted accordingly. +# With everything between (a) and (b) being sorted accordingly. # # You can use it like this: # $ scripts/sort-makefile-lines.py < elf/Makefile > elf/Makefile.tmp @@ -80,7 +80,7 @@ # No manually listed test currently uses more than that (though # automatically generated tests may; they don't need sorting). # - Avoid including another test and instead refactor into common -# code with all tests including hte common code, then give the +# code with all tests including the common code, then give the # tests unique names. # # If you have a Makefile that needs converting, then you can @@ -143,7 +143,7 @@ def sort_makefile_lines(): reg = r'^ # ' + sm[1] + r'$' for j in range(sm[0] + 1, len(lines)): if re.search(reg, lines[j]): - # Rembember the block to sort (inclusive). + # Remember the block to sort (inclusive). rangemarks.append((sm[0] + 1, j)) break -- cgit 1.4.1