From 0d2a972a845cb483c37e08b1160e8719095326a5 Mon Sep 17 00:00:00 2001 From: Daniel Scherzer Date: Mon, 13 Apr 2026 14:52:53 -0700 Subject: [PATCH] bootstrap.py: fix duplicated "the" --- src/bootstrap/bootstrap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bootstrap/bootstrap.py b/src/bootstrap/bootstrap.py index b893bb3f5821..dca9aeefd3be 100644 --- a/src/bootstrap/bootstrap.py +++ b/src/bootstrap/bootstrap.py @@ -1262,7 +1262,7 @@ def parse_args(args): # Pass allow_abbrev=False to remove support for inexact matches (e.g., # `--json` turning on `--json-output`). The argument list here is partial, - # most flags are matched in the Rust bootstrap code. This prevents the the + # most flags are matched in the Rust bootstrap code. This prevents the # default ambiguity checks in argparse from functioning correctly. parser = argparse.ArgumentParser(add_help=False, allow_abbrev=False) parser.add_argument("-h", "--help", action="store_true")