From 54e1bca62aea1ef07d39cb4c8d517d4984d0fb19 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E2=99=AB=20Christian=20Krause=20=E2=99=AB?=
 <wookietreiber@users.noreply.github.com>
Date: Thu, 2 Aug 2018 09:13:24 +0200
Subject: [PATCH] improves pam_limits documentation (#43526)

- the man page is actually limits.conf
- uses code highlighting for these
---
 lib/ansible/modules/system/pam_limits.py | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/lib/ansible/modules/system/pam_limits.py b/lib/ansible/modules/system/pam_limits.py
index ee5b61bc3c..560f5a069a 100644
--- a/lib/ansible/modules/system/pam_limits.py
+++ b/lib/ansible/modules/system/pam_limits.py
@@ -20,8 +20,9 @@ author:
     - "Sebastien Rohaut (@usawa)"
 short_description: Modify Linux PAM limits
 description:
-     - The C(pam_limits) module modify PAM limits, default in /etc/security/limits.conf.
-       For the full documentation, see man limits.conf(5).
+     - The C(pam_limits) module modifies PAM limits. The default file is
+       C(/etc/security/limits.conf). For the full documentation, see C(man 5
+       limits.conf).
 options:
   domain:
     description:
@@ -29,7 +30,7 @@ options:
     required: true
   limit_type:
     description:
-      - Limit type, see C(man limits) for an explanation
+      - Limit type, see C(man 5 limits.conf) for an explanation
     required: true
     choices: [ "hard", "soft", "-" ]
   limit_item:
@@ -94,7 +95,7 @@ options:
     required: false
     default: ''
 notes:
-  - If dest file doesn't exists, it is created.
+  - If C(dest) file doesn't exist, it is created.
 '''
 
 EXAMPLES = '''