summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorTim Gates <tim.gates@iress.com>2019-08-25 23:13:36 +1000
committerTim Gates <tim.gates@iress.com>2019-08-25 23:13:41 +1000
commitffbb7ea17d851ce4ec0a93af6c6276342357b92e (patch)
treeb55f0be6b6d3ed9f448915e344cbf4a5469f8b4f /examples
parentd64eddae7d59cebd24b5100d72147fcf2e7cd1dc (diff)
downloadclick-ffbb7ea17d851ce4ec0a93af6c6276342357b92e.tar.gz
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 38ef72c..dca45cc 100644
--- a/examples/aliases/aliases.py
+++ b/examples/aliases/aliases.py
@@ -41,7 +41,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: lookup 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)