From 337fc44f5056532625f403fe26e592efaf6b9fc3 Mon Sep 17 00:00:00 2001 From: Terence Hampson Date: Tue, 14 Nov 2023 11:37:08 -0500 Subject: [PATCH] Follow up to "Make chiptool.py a little easier to understand" (#30468) This address PR comment made after PR was merged --- scripts/tests/yaml/chiptool.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/tests/yaml/chiptool.py b/scripts/tests/yaml/chiptool.py index d535f1c942b127..99fc1d38a60a0a 100755 --- a/scripts/tests/yaml/chiptool.py +++ b/scripts/tests/yaml/chiptool.py @@ -35,7 +35,7 @@ def chiptool_runner_options(f): f = click.option('--server_path', type=click.Path(exists=True), default=None, help='Path to a websocket server that will be executed to forward parsed command. Most likely you want to use chiptool.')(f) f = click.option('--server_name', type=str, default='chip-tool', - help='If server_path is not provided, we use this argument to seach various directories within SDK binary that matches this name.')(f) + help='If server_path is not provided, we use this argument to seach various directories within the SDK for a binary that matches this name.')(f) f = click.option('--server_arguments', type=str, default='interactive server', help='Arguments to pass to the websocket server at launch.')(f) f = click.option('--show_adapter_logs', type=bool, default=False, show_default=True,