diff --git a/lib/ansible/modules/cloud/opennebula/one_vm.py b/lib/ansible/modules/cloud/opennebula/one_vm.py index 78cd49c5100..b7a4c5f90e3 100644 --- a/lib/ansible/modules/cloud/opennebula/one_vm.py +++ b/lib/ansible/modules/cloud/opennebula/one_vm.py @@ -152,7 +152,7 @@ options: disk_size: description: - The size of the disk created for new instances (in MB, GB, TB,...). - - NOTE':' If The Template hats Mutiple Disks the Order of the Sizes is + - NOTE':' If The Template hats Multiple Disks the Order of the Sizes is - matched against the order specified in C(template_id)/C(template_name). cpu: description: diff --git a/lib/ansible/modules/storage/netapp/na_ontap_vscan_on_access_policy.py b/lib/ansible/modules/storage/netapp/na_ontap_vscan_on_access_policy.py index 5d079adc9f9..bbe19a6536e 100644 --- a/lib/ansible/modules/storage/netapp/na_ontap_vscan_on_access_policy.py +++ b/lib/ansible/modules/storage/netapp/na_ontap_vscan_on_access_policy.py @@ -185,7 +185,7 @@ class NetAppOntapVscanOnAccessPolicy(object): if int(result.get_child_content('num-records')) == 1: return result elif int(result.get_child_content('num-records')) > 1: - self.module.fail_json(msg='Mutiple Vscan on Access Policy matching %s:' % self.policy_name) + self.module.fail_json(msg='Multiple Vscan on Access Policy matching %s:' % self.policy_name) return None def create_on_access_policy(self): diff --git a/test/units/modules/storage/netapp/test_na_ontap_firewall_policy.py b/test/units/modules/storage/netapp/test_na_ontap_firewall_policy.py index 9d78c4fabba..e8d48fe0db5 100644 --- a/test/units/modules/storage/netapp/test_na_ontap_firewall_policy.py +++ b/test/units/modules/storage/netapp/test_na_ontap_firewall_policy.py @@ -252,7 +252,7 @@ class TestMyModule(unittest.TestCase): self.get_mock_object('policy').apply() assert exc.value.args[0]['changed'] - def test_successful_modify_mutiple_ips(self): + def test_successful_modify_multiple_ips(self): ''' Test successful modify allow_list ''' data = self.mock_policy_args() data['allow_list'] = ['1.2.0.0/16', '1.0.0.0/8']