Skip to content

Commit 7342fbd

Browse files
authored
docs: fix spelling in code comments (#8690)
1 parent 87284f0 commit 7342fbd

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

scripts/storage/secondary/swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ def get_container(url, token, container, marker=None, limit=None,
335335
:param marker: marker query
336336
:param limit: limit query
337337
:param prefix: prefix query
338-
:param delimeter: string to delimit the queries on
338+
:param delimiter: string to delimit the queries on
339339
:param http_conn: HTTP connection object (If None, it will create the
340340
conn object)
341341
:param full_listing: if True, return a full listing, else returns a max

scripts/vm/hypervisor/xenserver/swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ def get_container(url, token, container, marker=None, limit=None,
337337
:param marker: marker query
338338
:param limit: limit query
339339
:param prefix: prefix query
340-
:param delimeter: string to delimit the queries on
340+
:param delimiter: string to delimit the queries on
341341
:param http_conn: HTTP connection object (If None, it will create the
342342
conn object)
343343
:param full_listing: if True, return a full listing, else returns a max

server/src/main/java/com/cloud/network/NetworkServiceImpl.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -3248,7 +3248,7 @@ public Network updateGuestNetwork(final UpdateNetworkCmd cmd) {
32483248
if (NetUtils.isNetworkAWithinNetworkB(network.getCidr(), network.getNetworkCidr())) {
32493249
logger.warn(
32503250
"Existing IP reservation will become ineffective for the network with id = " + networkId + " You need to reapply reservation after network reimplementation.");
3251-
//set cidr to the newtork cidr
3251+
//set cidr to the network cidr
32523252
network.setCidr(network.getNetworkCidr());
32533253
//set networkCidr to null to bring network back to no IP reservation state
32543254
network.setNetworkCidr(null);

systemvm/debian/etc/vpcdnsmasq.conf

+1-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ expand-hosts
135135
# of valid alternatives, so we will give examples of each. Note that
136136
# IP addresses DO NOT have to be in the range given above, they just
137137
# need to be on the same network. The order of the parameters in these
138-
# do not matter, it's permissble to give name,adddress and MAC in any order
138+
# do not matter, it's permissble to give name,address and MAC in any order
139139

140140
# Always allocate the host with ethernet address 11:22:33:44:55:66
141141
# The IP address 192.168.0.60

test/integration/component/test_deploy_vm_userdata_multi_nic.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def setUpClass(cls):
7979
# Enable Network offering
8080
cls.network_offering_nouserdata.update(cls.api_client, state='Enabled')
8181

82-
# Create Network Offering with all the serices
82+
# Create Network Offering with all the services
8383
cls.network_offering_all = NetworkOffering.create(
8484
cls.api_client,
8585
cls.test_data["isolated_network_offering"]

test/integration/smoke/test_migration.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ def setUpClass(cls):
119119
cls.network_offering_nouserdata.update(cls.api_client,
120120
state='Enabled')
121121

122-
# Create Network Offering with all the serices
122+
# Create Network Offering with all the services
123123
cls.network_offering_all = NetworkOffering.create(
124124
cls.api_client,
125125
cls.test_data["isolated_network_offering"]

test/metadata/func/loadbalancers.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1660,7 +1660,7 @@ under the License.
16601660
</parameters>
16611661
</command>
16621662

1663-
<!-- Test case 939 - verify that you can assign a load balancer to multipe vms -->
1663+
<!-- Test case 939 - verify that you can assign a load balancer to multiple vms -->
16641664
<command>
16651665
<name>deployVirtualMachine</name>
16661666
<testcase> [Deploy a Virtual Machine-1 to check multiple VMs - LB assignment]</testcase>

tools/marvin/marvin/lib/base.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4877,7 +4877,7 @@ def list(cls, apiclient, **kwargs):
48774877

48784878

48794879
class NetworkServiceProvider:
4880-
"""Manage network serivce providers for CloudStack"""
4880+
"""Manage network service providers for CloudStack"""
48814881

48824882
def __init__(self, items):
48834883
self.__dict__.update(items)

0 commit comments

Comments
 (0)