gooftool: Fix text nits.
Fix a typo and make text format better.
BUG=none
TEST=manually
Change-Id: Ie4fa5c6bd28e9b48fd1b5ab8eec1b8f8e047aa57
diff --git a/py/gooftool/commands.py b/py/gooftool/commands.py
index 468039b..eee8ef2 100755
--- a/py/gooftool/commands.py
+++ b/py/gooftool/commands.py
@@ -72,7 +72,7 @@
def Command(cmd_name, *args, **kwargs):
- """ Decorator for commands in gooftool.
+ """Decorator for commands in gooftool.
This is similar to argparse_utils.Command, but all gooftool commands
can be waived during `gooftool finalize` or `gooftool verify` using
@@ -133,7 +133,7 @@
_device_info_cmd_arg = CmdArg(
'--device_info', metavar='DEVICE_INFO.yaml', default=None,
- help='A dict of device info to use instead of fetching from shopfllor '
+ help='A dict of device info to use instead of fetching from shopfloor '
'server.')
_hwid_cmd_arg = CmdArg(
@@ -195,14 +195,14 @@
_waive_list_cmd_arg = CmdArg(
'--waive_list', nargs='*', default=[], metavar='SUBCMD',
- help='A list of waived checks, separated by whitespace.'
- 'Each item should be a sub-command of gooftool.'
+ help='A list of waived checks, separated by whitespace. '
+ 'Each item should be a sub-command of gooftool. '
'e.g. "gooftool verify --waive_list verify_tpm clear_gbb_flags".')
_skip_list_cmd_arg = CmdArg(
'--skip_list', nargs='*', default=[], metavar='SUBCMD',
- help='A list of skipped checks, separated by whitespace.'
- 'Each item should be a sub-command of gooftool.'
+ help='A list of skipped checks, separated by whitespace. '
+ 'Each item should be a sub-command of gooftool. '
'e.g. "gooftool verify --skip_list verify_tpm clear_gbb_flags".')