diff options
author | Brian Coca <brian.coca+git@gmail.com> | 2014-10-30 13:50:34 -0400 |
---|---|---|
committer | Brian Coca <brian.coca+git@gmail.com> | 2014-10-30 13:50:34 -0400 |
commit | 94a732fb1a122e6018713b0b7cc3f359e62a88c1 (patch) | |
tree | 351c5e4b798aca501ea6095cd39b69e0650241cd /bin | |
parent | 0fb0548d0b04cf2a1d9b6755697b7dca45d2dbf8 (diff) | |
download | ansible-94a732fb1a122e6018713b0b7cc3f359e62a88c1.tar.gz |
fixed typo in comments
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/ansible-doc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/ansible-doc b/bin/ansible-doc index e4c7d19522..5a708a421c 100755 --- a/bin/ansible-doc +++ b/bin/ansible-doc @@ -189,7 +189,7 @@ def get_module_list_text(module_list): if len(desc) > linelimit: desc = desc[:linelimit] + '...' - if module.startswith('_'): # Handle replecated + if module.startswith('_'): # Handle deprecated module = module[1:] deprecated.append("%-*s %-*.*s" % (displace, module, linelimit, len(desc), desc)) else: |