summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorIkko Eltociear Ashimine <eltociear@gmail.com>2023-03-16 23:34:08 +0900
committerGitHub <noreply@github.com>2023-03-16 10:34:08 -0400
commit516cb9a52e1ead8b2571e845505bcd68daee9e03 (patch)
tree38519c1935f3ebd8a5ecf76fbfdbc16fa90b86d3 /lib
parentbad8843124a50493141a3e3d7920353239021389 (diff)
downloadansible-516cb9a52e1ead8b2571e845505bcd68daee9e03.tar.gz
fix typo in plugin_docs.py (#80195)
lable -> label
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