Skip to content

Commit

Permalink
Correct grammar/typos in comments
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesls committed Nov 26, 2013
1 parent 83574d2 commit 89c1551
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion awscli/argparser.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ class ArgTableArgParser(CLIArgParser):

def __init__(self, argument_table, command_table=None):
# command_table is an optional subcommand_table. If it's passed
# in, then we'l update the argparse to parse a 'subcommand' argument
# in, then we'll update the argparse to parse a 'subcommand' argument
# and populate the choices field with the command table keys.
super(ArgTableArgParser, self).__init__(
formatter_class=self.Formatter,
Expand Down
2 changes: 1 addition & 1 deletion awscli/customizations/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def __call__(self, args, parsed_globals):
if hasattr(parsed_args, 'help'):
self._display_help(parsed_args, parsed_globals)
elif getattr(parsed_args, 'subcommand', None) is None:
# No subcommand was specified was call the main
# No subcommand was specified so call the main
# function for this top level command.
self._run_main(parsed_args, parsed_globals)
else:
Expand Down

0 comments on commit 89c1551

Please sign in to comment.