From 94a732fb1a122e6018713b0b7cc3f359e62a88c1 Mon Sep 17 00:00:00 2001 From: Brian Coca Date: Thu, 30 Oct 2014 13:50:34 -0400 Subject: [PATCH] fixed typo in comments --- bin/ansible-doc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/ansible-doc b/bin/ansible-doc index e4c7d195224..5a708a421c3 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: