From 67382e982501629c5bd181d7371222a3eaa0931d Mon Sep 17 00:00:00 2001 From: Heejin Ahn Date: Tue, 21 Apr 2026 18:18:43 +0000 Subject: [PATCH] Fix comment about --no-auto-initial-contents #5943 changed the default from disabled to enabled but comment was left unchanged. --- scripts/test/shared.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/test/shared.py b/scripts/test/shared.py index 3d36fb35fa1..6f39c1dc37d 100644 --- a/scripts/test/shared.py +++ b/scripts/test/shared.py @@ -95,8 +95,8 @@ def parse_args(args): parser.add_argument( '--no-auto-initial-contents', dest='auto_initial_contents', action='store_false', default=True, - help='Select important initial contents automaticaly in fuzzer. ' - 'Default: disabled.') + help='Disables the automatic selection of important initial contents ' + 'in fuzzer.') return parser.parse_args(args)