From c23162c04b4abb1c2e9a0a97971e99e56fb0ec37 Mon Sep 17 00:00:00 2001 From: Gordon Fierce Date: Mon, 7 Dec 2015 18:47:26 -0500 Subject: [PATCH] Fix documentation to prevent formatting error where each letter has its own line. --- lib/ansible/modules/extras/system/iptables.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/ansible/modules/extras/system/iptables.py b/lib/ansible/modules/extras/system/iptables.py index b9368e0688f..f3ae8da9383 100644 --- a/lib/ansible/modules/extras/system/iptables.py +++ b/lib/ansible/modules/extras/system/iptables.py @@ -54,12 +54,14 @@ options: default: filter choices: [ "filter", "nat", "mangle", "raw", "security" ] state: - description: Whether the rule should be absent or present. + description: + - Whether the rule should be absent or present. required: false default: present choices: [ "present", "absent" ] ip_version: - description: Which version of the IP protocol this rule should apply to. + description: + - Which version of the IP protocol this rule should apply to. required: false default: ipv4 choices: [ "ipv4", "ipv6" ]