diff --git a/docs/ansible.posix.acl_module.rst b/docs/ansible.posix.acl_module.rst
index 07fa743..2b47f98 100644
--- a/docs/ansible.posix.acl_module.rst
+++ b/docs/ansible.posix.acl_module.rst
@@ -157,7 +157,7 @@ Parameters
|
- The permissions to apply/remove can be any combination of r, w and x (read, write and execute respectively)
+ The permissions to apply/remove can be any combination of r, w, x (read, write and execute respectively), and X (execute permission if the file is a directory or already has execute permission for some user)
|
diff --git a/plugins/modules/acl.py b/plugins/modules/acl.py
index 9e89157..c4a5542 100644
--- a/plugins/modules/acl.py
+++ b/plugins/modules/acl.py
@@ -51,7 +51,8 @@ options:
type: str
permissions:
description:
- - The permissions to apply/remove can be any combination of C(r), C(w) and C(x) (read, write and execute respectively)
+ - The permissions to apply/remove can be any combination of C(r), C(w), C(x)
+ - (read, write and execute respectively), and C(X) (execute permission if the file is a directory or already has execute permission for some user)
type: str
entry:
description: