diff options
author | Paul Pluzhnikov <ppluzhnikov@google.com> | 2023-06-02 03:40:12 +0000 |
---|---|---|
committer | Paul Pluzhnikov <ppluzhnikov@google.com> | 2023-06-02 23:46:32 +0000 |
commit | 2cbeda847bb58bfac73d2048e3e0300ff1b2b894 (patch) | |
tree | f22a04d6e72985be372db2b87876d351fc35e6c1 /scripts | |
parent | 7f0d9e61f40c669fca3cfd1e342fa8236c7220b7 (diff) | |
download | glibc-2cbeda847bb58bfac73d2048e3e0300ff1b2b894.zip glibc-2cbeda847bb58bfac73d2048e3e0300ff1b2b894.tar.gz glibc-2cbeda847bb58bfac73d2048e3e0300ff1b2b894.tar.bz2 |
Fix a few more typos I missed in previous round -- BZ 25337
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/sort-makefile-lines.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/sort-makefile-lines.py b/scripts/sort-makefile-lines.py index c0badeb..8a1bc3f 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 '<variable> += \' (or '= \', or ':= \') # (b) Marker end is ' # <variable>' (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 |