mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-26 20:31:27 -07:00
fix spelling mistakes in several modules (#36296)
* fix more spelling mistakes * fix spelling mistakes
This commit is contained in:
parent
a50db37c6c
commit
16c564c4b4
21 changed files with 33 additions and 33 deletions
|
@ -16,7 +16,7 @@ DOCUMENTATION = '''
|
|||
module: gitlab_user
|
||||
short_description: Creates/updates/deletes Gitlab Users
|
||||
description:
|
||||
- When the user does not exists in Gitlab, it will be created.
|
||||
- When the user does not exist in Gitlab, it will be created.
|
||||
- When the user does exists and state=absent, the user will be deleted.
|
||||
- When changes are made to user, the user will be updated.
|
||||
version_added: "2.1"
|
||||
|
@ -352,7 +352,7 @@ def main():
|
|||
|
||||
# Check if user exists, if not exists and state = absent, we exit nicely.
|
||||
if not user.existsUser(user_username) and state == "absent":
|
||||
module.exit_json(changed=False, result="User already deleted or does not exists")
|
||||
module.exit_json(changed=False, result="User already deleted or does not exist")
|
||||
else:
|
||||
# User exists,
|
||||
if state == "absent":
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue