Fixed few typo's: "Mutiple" to "Multiple" (#64543)

Signed-off-by: Satyajit Bulage <sbulage@redhat.com>
This commit is contained in:
Satyajit Bulage 2019-11-07 14:03:28 +05:30 committed by Abhijeet Kasurde
parent 023a9b3166
commit 98b6b98287
3 changed files with 3 additions and 3 deletions

View file

@ -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:

View file

@ -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):

View file

@ -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']