Improve language of help text

This commit is contained in:
David Dalcino
2021-08-01 11:26:42 -07:00
parent 9982f56613
commit 55c6e94636
2 changed files with 14 additions and 14 deletions

View File

@@ -15,8 +15,8 @@ def test_cli_help(capsys):
"install,tool,doc,example,src,help,version}\n",
" ...\n",
"\n",
"Another unoffical Qt Installer.\n",
"aqt help you install Qt SDK, tools, examples and others\n",
"Another unofficial Qt Installer.\n",
"aqt helps you install Qt SDK, tools, examples and others\n",
"\n",
"optional arguments:\n",
" -h, --help show this help message and exit\n",
@@ -24,15 +24,15 @@ def test_cli_help(capsys):
" Configuration ini file.\n",
"\n",
"subcommands:\n",
" aqt accept several subcommands\n",
" install-* subcommands are installer of components\n",
" list-* subcommands are show available compoenets\n",
" aqt accepts several subcommands:\n",
" install-* subcommands are commands that install components\n",
" list-* subcommands are commands that show available components\n",
" \n",
" commands {install|tool|src|examples|doc} are oblesolete now\n",
" commands {install|tool|src|examples|doc} are deprecated and marked for removal\n",
"\n",
" {install-qt,install-tool,install-doc,install-example,install-src,list-qt,list-tool,",
"install,tool,doc,example,src,help,version}\n",
" Please refer each help message shown with --help argument for each subcommands\n",
" Please refer to each help message by using '--help' with each subcommand\n",
]
)
cli = Cli()