about summary refs log tree commit diff
path: root/scripts
diff options
context:
space:
mode:
authorPaul Pluzhnikov <ppluzhnikov@google.com>2023-06-02 03:40:12 +0000
committerPaul Pluzhnikov <ppluzhnikov@google.com>2023-06-02 23:46:32 +0000
commit2cbeda847bb58bfac73d2048e3e0300ff1b2b894 (patch)
treef22a04d6e72985be372db2b87876d351fc35e6c1 /scripts
parent7f0d9e61f40c669fca3cfd1e342fa8236c7220b7 (diff)
downloadglibc-2cbeda847bb58bfac73d2048e3e0300ff1b2b894.tar.gz
glibc-2cbeda847bb58bfac73d2048e3e0300ff1b2b894.tar.xz
glibc-2cbeda847bb58bfac73d2048e3e0300ff1b2b894.zip
Fix a few more typos I missed in previous round -- BZ 25337
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/sort-makefile-lines.py6
1 files changed, 3 insertions, 3 deletions
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 '<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