summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorJoshua Bronson <jab@users.noreply.github.com>2019-08-25 20:48:08 -0400
committerGitHub <noreply@github.com>2019-08-25 20:48:08 -0400
commit9c5769e2c372e506c6efa16d4da0f08150ea1a34 (patch)
treea2ae528ad9ef79dab49251802077d6e760ed0d53 /examples
parentffcce4f0dd1adbc364b78ec5c99acde8ef3ed8df (diff)
parentdc7b70846c72f9ef8ab5d22dc42f51e422a35d47 (diff)
downloadclick-9c5769e2c372e506c6efa16d4da0f08150ea1a34.tar.gz
Merge pull request #1377 from timgates42/feature/fix_simple_typo__aliase___70
Fix simple typo: aliase -> alias
Diffstat (limited to 'examples')
-rw-r--r--examples/aliases/aliases.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/aliases/aliases.py b/examples/aliases/aliases.py
index 299d3a5..4125c03 100644
--- a/examples/aliases/aliases.py
+++ b/examples/aliases/aliases.py
@@ -52,7 +52,7 @@ class AliasedGroup(click.Group):
# will create the config object is missing.
cfg = ctx.ensure_object(Config)
- # Step three: lookup an explicit command aliase in the config
+ # Step three: look up an explicit command alias in the config
if cmd_name in cfg.aliases:
actual_cmd = cfg.aliases[cmd_name]
return click.Group.get_command(self, ctx, actual_cmd)