From 3831f59094871670284f206e751d4bd7f0df6624 Mon Sep 17 00:00:00 2001 From: Jens Carl Date: Fri, 3 Jul 2015 17:10:00 -0700 Subject: [PATCH] Update developing_modules.rst Fix typo. --- docsite/rst/developing_modules.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docsite/rst/developing_modules.rst b/docsite/rst/developing_modules.rst index 74daba60d44..affd7f067e8 100644 --- a/docsite/rst/developing_modules.rst +++ b/docsite/rst/developing_modules.rst @@ -484,7 +484,7 @@ Module checklist * The return structure should be consistent, even if NA/None are used for keys normally returned under other options. * Are module actions idempotent? If not document in the descriptions or the notes * Import module snippets `from ansible.module_utils.basic import *` at the bottom, conserves line numbers for debugging. -* Call your :func:`main` from a condtional so that it would be possible to +* Call your :func:`main` from a conditional so that it would be possible to test them in the future example:: if __name__ == '__main__':