about summary refs log tree commit diff
path: root/src/bootstrap/configure.py
diff options
context:
space:
mode:
authorAleksey Kliger <alklig@microsoft.com>2025-07-08 14:18:07 -0400
committerAleksey Kliger <alklig@microsoft.com>2025-07-08 14:18:07 -0400
commit7c8a6d978bb47827eeef15448ca95f82af32c381 (patch)
tree86c919dda2ab6c53f8026ab6da243282ea984c77 /src/bootstrap/configure.py
parent3ba8e330f9960a52b2c8ca10c8cba425514919f9 (diff)
downloadrust-7c8a6d978bb47827eeef15448ca95f82af32c381.tar.gz
rust-7c8a6d978bb47827eeef15448ca95f82af32c381.zip
Spelling
Diffstat (limited to 'src/bootstrap/configure.py')
-rwxr-xr-xsrc/bootstrap/configure.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap/configure.py b/src/bootstrap/configure.py
index 86208b94261..b05a5cc8b81 100755
--- a/src/bootstrap/configure.py
+++ b/src/bootstrap/configure.py
@@ -746,7 +746,7 @@ def write_uncommented(target, f):
     block = []
 
     def flush(last):
-        # If the block is entiry made of comments, ignore it
+        # If the block is entirely made of comments, ignore it
         entire_block_comments = all(ln.startswith("#") or ln == "" for ln in block)
         if not entire_block_comments and len(block) > 0:
             for line in block: