diff --git a/plugins/modules/ipagroup.py b/plugins/modules/ipagroup.py index 25ab9cf9652d0a6c2fb41ee42b5b7d7281292233..48266f58e625732989eb704afeb62f11b78ecc43 100644 --- a/plugins/modules/ipagroup.py +++ b/plugins/modules/ipagroup.py @@ -242,7 +242,7 @@ def main(): if state == "present": if len(names) != 1: ansible_module.fail_json( - msg="Onle one group can be added at a time.") + msg="Only one group can be added at a time.") if action == "member": invalid = ["description", "gid", "nonposix", "external", "nomembers"] diff --git a/plugins/modules/ipauser.py b/plugins/modules/ipauser.py index e21452c612e0114d5d116401900be267b9b1d810..04a49ecd71ca8cdb1db7d9a3d846c298f8404c1d 100644 --- a/plugins/modules/ipauser.py +++ b/plugins/modules/ipauser.py @@ -320,7 +320,7 @@ def main(): if state == "present": if len(names) != 1: ansible_module.fail_json( - msg="Onle one user can be added at a time.") + msg="Only one user can be added at a time.") if first is None: ansible_module.fail_json(msg="First name is needed") if last is None: