From 307bc6dbc6e5c15c9116cf062e90b1991e782373 Mon Sep 17 00:00:00 2001 From: "RuiJun Hu (MSFT)" Date: Thu, 5 Dec 2024 10:54:51 +0800 Subject: [PATCH] fix html tag (#8336) --- src/devcenter/azext_devcenter/_params.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/devcenter/azext_devcenter/_params.py b/src/devcenter/azext_devcenter/_params.py index 50402542e46..097d892e9de 100644 --- a/src/devcenter/azext_devcenter/_params.py +++ b/src/devcenter/azext_devcenter/_params.py @@ -21,19 +21,19 @@ dev_center_type = CLIArgumentType( options_list=["--dev-center-name", "--dev-center", "-d"], - help="The name of the dev center. Use az configure -d dev-center= to configure a default.", + help="The name of the dev center. Use `az configure -d dev-center=` to configure a default.", configured_default="dev-center", ) project_type = CLIArgumentType( options_list=["--project", "--project-name"], - help="The name of the project. Use az configure -d project= to configure a default.", + help="The name of the project. Use `az configure -d project=` to configure a default.", configured_default="project", ) endpoint = CLIArgumentType( options_list=["--endpoint"], - help="The API endpoint for the developer resources. Use az configure -d endpoint= to configure a default.", + help="The API endpoint for the developer resources. Use `az configure -d endpoint=` to configure a default.", configured_default="endpoint", )