Skip to content

Commit def7ce6

Browse files
Fix spelling (#6898)
Co-authored-by: davidjumani <dj.davidjumani1994@gmail.com>
1 parent 3106dba commit def7ce6

File tree

62 files changed

+88
-89
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+88
-89
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Contributing to Apache CloudStack (ACS)
33

44
Summary
55
-------
6-
This document covers how to contribute to the ACS project. ACS uses github PRs to manage code contributions.
6+
This document covers how to contribute to the ACS project. ACS uses GitHub PRs to manage code contributions.
77
These instructions assume you have a GitHub.com account, so if you don't have one you will have to create one. Your proposed code changes will be published to your own fork of the ACS project and you will submit a Pull Request for your changes to be added.
88

99
_Lets get started!!!_

INSTALL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ You may get the source code from the repository hosted on Apache:
5959

6060
$ git clone https://gitbox.apache.org/repos/asf/cloudstack.git
6161

62-
Or, you may fork the repository from the official Apache CloudStack mirror on [Github](https://github.com/apache/cloudstack)
62+
Or, you may fork the repository from the official Apache CloudStack mirror on [GitHub](https://github.com/apache/cloudstack)
6363

6464
To checkout a specific branch, for example 4.11, do:
6565

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,13 +51,13 @@ Apache CloudStack project uses Git. The official Git repository is at:
5151

5252
https://gitbox.apache.org/repos/asf/cloudstack.git
5353

54-
And a mirror is hosted on Github:
54+
And a mirror is hosted on GitHub:
5555

5656
https://github.com/apache/cloudstack
5757

58-
The Github mirror is strictly read only and provides convenience to users and
58+
The GitHub mirror is strictly read only and provides convenience to users and
5959
developers to explore the code and for the community to accept contributions
60-
via Github pull requests.
60+
via GitHub pull requests.
6161

6262
## Documentation
6363

@@ -95,7 +95,7 @@ Mailing lists:
9595
- [Issues Mailing List](mailto:issues-subscribe@cloudstack.apache.org)
9696
- [Marketing Mailing List](mailto:marketing-subscribe@cloudstack.apache.org)
9797

98-
Report and/or check bugs on [Github](https://github.com/apache/cloudstack/issues) and check our
98+
Report and/or check bugs on [GitHub](https://github.com/apache/cloudstack/issues) and check our
9999
developer [page](https://cloudstack.apache.org/developers.html) for contributing code.
100100

101101
## Reporting Security Vulnerabilities

api/src/main/java/com/cloud/host/HostEnvironment.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ public class HostEnvironment {
3333
public String storageNetwork;
3434
public String storageGateway;
3535
public String storageVlan;
36-
public String secondaryStroageIpAddress;
3736

3837
public String storage2IpAddress;
3938
public String storage2Network;

api/src/main/java/com/cloud/vm/NicIpAlias.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
import org.apache.cloudstack.api.Identity;
2121
import org.apache.cloudstack.api.InternalIdentity;
2222

23-
/** Each entry represents the alis ip of a perticular nic.
23+
/** Each entry represents the alias ip of a particular nic.
2424
*
2525
*/
2626
public interface NicIpAlias extends ControlledEntity, Identity, InternalIdentity {

api/src/main/java/org/apache/cloudstack/api/command/admin/domain/CreateDomainCmd.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public class CreateDomainCmd extends BaseCmd {
4949
@Parameter(name = ApiConstants.PARENT_DOMAIN_ID,
5050
type = CommandType.UUID,
5151
entityType = DomainResponse.class,
52-
description = "assigns new domain a parent domain by domain ID of the parent. If no parent domain is specied, the ROOT domain is assumed.")
52+
description = "assigns new domain a parent domain by domain ID of the parent. If no parent domain is specified, the ROOT domain is assumed.")
5353
private Long parentDomainId;
5454

5555
@Parameter(name = ApiConstants.NETWORK_DOMAIN, type = CommandType.STRING, description = "Network domain for networks in the domain")

api/src/main/java/org/apache/cloudstack/api/command/admin/network/CreateManagementNetworkIpRangeCmd.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ public class CreateManagementNetworkIpRangeCmd extends BaseAsyncCmd {
8989

9090
@Parameter(name = ApiConstants.VLAN,
9191
type = CommandType.STRING,
92-
description = "Optional. The vlan id the ip range sits on, default to Null when it is not specified which means you network is not on any Vlan")
92+
description = "Optional. The vlan id the ip range sits on, default to Null when it is not specified which means your network is not on any Vlan")
9393
private String vlan;
9494

9595
/////////////////////////////////////////////////////

api/src/main/java/org/apache/cloudstack/api/command/admin/network/CreateStorageNetworkIpRangeCmd.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public class CreateStorageNetworkIpRangeCmd extends BaseAsyncCmd {
6464

6565
@Parameter(name = ApiConstants.VLAN,
6666
type = CommandType.INTEGER,
67-
description = "Optional. The vlan the ip range sits on, default to Null when it is not specified which means you network is not on any Vlan. This is mainly for Vmware as other hypervisors can directly reterive bridge from pyhsical network traffic type table")
67+
description = "Optional. The vlan the ip range sits on, default to Null when it is not specified which means your network is not on any Vlan. This is mainly for Vmware as other hypervisors can directly retrieve bridge from physical network traffic type table")
6868
private Integer vlan;
6969

7070
@Parameter(name = ApiConstants.NETMASK, type = CommandType.STRING, required = true, description = "the netmask for storage network")

api/src/main/java/org/apache/cloudstack/api/command/admin/offering/CreateServiceOfferingCmd.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ public class CreateServiceOfferingCmd extends BaseCmd {
190190
since = "4.14")
191191
private String cacheMode;
192192

193-
// Introduce 4 new optional paramaters to work custom compute offerings
193+
// Introduce 4 new optional parameters to work custom compute offerings
194194
@Parameter(name = ApiConstants.CUSTOMIZED,
195195
type = CommandType.BOOLEAN,
196196
since = "4.13",

api/src/main/java/org/apache/cloudstack/api/command/admin/systemvm/DestroySystemVmCmd.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
import com.cloud.user.Account;
3535
import com.cloud.vm.VirtualMachine;
3636

37-
@APICommand(name = "destroySystemVm", responseObject = SystemVmResponse.class, description = "Destroyes a system virtual machine.", entityType = {VirtualMachine.class},
37+
@APICommand(name = "destroySystemVm", responseObject = SystemVmResponse.class, description = "Destroys a system virtual machine.", entityType = {VirtualMachine.class},
3838
requestHasSensitiveInfo = false, responseHasSensitiveInfo = false)
3939
public class DestroySystemVmCmd extends BaseAsyncCmd {
4040
public static final Logger s_logger = Logger.getLogger(DestroySystemVmCmd.class.getName());

0 commit comments

Comments
 (0)