summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/ansible/parsing/plugin_docs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ansible/parsing/plugin_docs.py b/lib/ansible/parsing/plugin_docs.py
index cda5463bd2..f21b2ebc87 100644
--- a/lib/ansible/parsing/plugin_docs.py
+++ b/lib/ansible/parsing/plugin_docs.py
@@ -73,7 +73,7 @@ def read_docstring_from_python_module(filename, verbose=True, ignore_errors=True
tokens = tokenize.generate_tokens(f.readline)
for token in tokens:
- # found lable that looks like variable
+ # found label that looks like variable
if token.type == tokenize.NAME:
# label is expected value, in correct place and has not been seen before