diff options
author | Andrew Klychkov <aaklychkov@mail.ru> | 2020-02-21 11:56:35 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-21 11:56:35 +0100 |
commit | 244277adddfadc1fe5ef1cc34cab6b6857d95267 (patch) | |
tree | f848f842a3ac431f5d10e5bd3d321745f15ed2f0 /docs | |
parent | user_guide/intro_adhoc.rst: fix typo (#67644) (diff) | |
download | ansible-244277adddfadc1fe5ef1cc34cab6b6857d95267.tar.xz ansible-244277adddfadc1fe5ef1cc34cab6b6857d95267.zip |
dev_guide/developing_modules_best_practices.rst: fix typo (#67639)
Diffstat (limited to 'docs')
-rw-r--r-- | docs/docsite/rst/dev_guide/developing_modules_best_practices.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/docsite/rst/dev_guide/developing_modules_best_practices.rst b/docs/docsite/rst/dev_guide/developing_modules_best_practices.rst index 35a65771a0..68609d0e71 100644 --- a/docs/docsite/rst/dev_guide/developing_modules_best_practices.rst +++ b/docs/docsite/rst/dev_guide/developing_modules_best_practices.rst @@ -31,7 +31,7 @@ Designing module interfaces General guidelines & tips ========================= -* Each module should be self-contained in one file, so it can be be auto-transferred by Ansible. +* Each module should be self-contained in one file, so it can be auto-transferred by Ansible. * Module name MUST use underscores instead of hyphens or spaces as a word separator. Using hyphens and spaces will prevent Ansible from importing your module. * Always use the ``hacking/test-module.py`` script when developing modules - it will warn you about common pitfalls. * If you have a local module that returns facts specific to your installations, a good name for this module is ``site_facts``. |