diff --git a/plugins/modules/dconf.py b/plugins/modules/dconf.py index c7a30dde8e..88f48fb37e 100644 --- a/plugins/modules/dconf.py +++ b/plugins/modules/dconf.py @@ -27,7 +27,7 @@ notes: specified in Ansible code. C(gi.repository) is likely to be present on most systems which have C(dconf) but may not be present everywhere. When it is missing, a simple string comparison between values is used, and there may be false positives, that is, Ansible may think that a value is being changed when it is not. This fallback is to be removed in a future version - of this module, at which point the module will stop working on hosts without C(gi.repository). + of this module, at which point the module C(gi.repository) is going to be required. - Detection of existing, running D-Bus session, required to change settings using C(dconf), is not 100% reliable due to implementation details of D-Bus daemon itself. This might lead to running applications not picking-up changes on-the-fly if options are changed using Ansible and C(dbus-run-session). diff --git a/plugins/modules/django_dumpdata.py b/plugins/modules/django_dumpdata.py index fd5e01208c..d7666de187 100644 --- a/plugins/modules/django_dumpdata.py +++ b/plugins/modules/django_dumpdata.py @@ -49,7 +49,7 @@ options: description: - Path to the output file. - The fixture filename may end with V(.bz2), V(.gz), V(.lzma) or V(.xz), in which case the corresponding - compression format will be used. + compression format is used. - This corresponds to the C(--output) parameter for the C(django-admin dumpdata) command. type: path aliases: [output] diff --git a/plugins/modules/kea_command.py b/plugins/modules/kea_command.py index a629d125e9..a8c95f7575 100644 --- a/plugins/modules/kea_command.py +++ b/plugins/modules/kea_command.py @@ -15,7 +15,7 @@ description: - This module supports sending arbitrary commands and returns the server response unchecked; while it would be possible to write individual modules for specific KEA service commands, that approach would not scale, as the FOSS hooks alone provide dozens of commands. - - Between sending the command and parsing the result status, RV(ignore:changed) will register as V(true) if an error occurs, + - Between sending the command and parsing the result status, RV(ignore:changed) registers as V(true) if an error occurs, to err on the safe side. version_added: '12.0.0' author: Thorsten Glaser (@mirabilos) @@ -54,7 +54,7 @@ options: description: - The full pathname of the Unix Domain Socket to connect to. - The default value is suitable for C(kea-dhcp4-server) on Debian trixie. - - This module directly interfacees via UDS; the HTTP wrappers are not supported. + - This module directly interfaces using UDS; the HTTP wrappers are not supported. type: path default: /run/kea/kea4-ctrl-socket extends_documentation_fragment: diff --git a/plugins/modules/keycloak_realm.py b/plugins/modules/keycloak_realm.py index f5f29c4fbd..0f5d421cc1 100644 --- a/plugins/modules/keycloak_realm.py +++ b/plugins/modules/keycloak_realm.py @@ -532,28 +532,28 @@ options: type: int client_session_idle_timeout: description: - - All Clients will inherit from this setting, time a session is allowed to be idle before it expires. + - All Clients inherit from this setting, time a session is allowed to be idle before it expires. aliases: - clientSessionIdleTimeout type: int version_added: 11.2.0 client_session_max_lifespan: description: - - All Clients will inherit from this setting, max time before a session is expired. + - All Clients inherit from this setting, max time before a session is expired. aliases: - clientSessionMaxLifespan type: int version_added: 11.2.0 client_offline_session_idle_timeout: description: - - All Clients will inherit from this setting, time an offline session is allowed to be idle before it expires. + - All Clients inherit from this setting, time an offline session is allowed to be idle before it expires. aliases: - clientOfflineSessionIdleTimeout type: int version_added: 11.2.0 client_offline_session_max_lifespan: description: - - All Clients will inherit from this setting, max time before an offline session is expired regardless of activity. + - All Clients inherit from this setting, max time before an offline session is expired regardless of activity. aliases: - clientOfflineSessionMaxLifespan type: int diff --git a/plugins/modules/pacman.py b/plugins/modules/pacman.py index ab21861c29..d9fa599c43 100644 --- a/plugins/modules/pacman.py +++ b/plugins/modules/pacman.py @@ -128,7 +128,7 @@ notes: - 'In the tests, while using C(yay) as the O(executable) option, the module failed to install AUR packages with the error: C(error: target not found: ). This is caused by an incompatibility of yay with the arguments passed by this module. See L(yay bug #1744 report for details, https://github.com/Jguer/yay/issues/1744).' - - The common return values `stdout` and `stderr` are returned upon success, when needed, since community.general 4.1.0. + - The common return values C(stdout) and C(stderr) are returned upon success, when needed, since community.general 4.1.0. """ RETURN = r""" diff --git a/plugins/modules/zpool.py b/plugins/modules/zpool.py index f7f8f0994f..d3b6be1841 100644 --- a/plugins/modules/zpool.py +++ b/plugins/modules/zpool.py @@ -18,7 +18,7 @@ attributes: check_mode: support: partial details: - - In check mode, any C(zpool) subcommand that supports the dry-run flag (C(-n)) will be run with C(-n) and its simulated + - In check mode, any C(zpool) subcommand that supports the dry-run flag (C(-n)) is run with C(-n) and its simulated output is included in the module's diff results. diff_mode: support: full