mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-05-03 07:41:30 -07:00
Be consistent in the documentation
The documentation for the `state` field is not very clear. It says possible values are "installed, uninstalled" and default value is "present" The examples below alow uses `present` and `absent`. This patch uses "absent" and "present" instead of "installed" and "uninstalled" Moreover, this is consistent with other packaging modules, like homebrew itself
This commit is contained in:
parent
36c74c5798
commit
c5eb378677
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@ options:
|
||||||
state:
|
state:
|
||||||
description:
|
description:
|
||||||
- state of the cask
|
- state of the cask
|
||||||
choices: [ 'installed', 'uninstalled' ]
|
choices: [ 'present', 'absent' ]
|
||||||
required: false
|
required: false
|
||||||
default: present
|
default: present
|
||||||
'''
|
'''
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue