You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by da...@apache.org on 2020/11/20 08:28:40 UTC

[cloudstack] branch 4.14 updated: accountresponse: Fix domainpath description (#4487)

This is an automated email from the ASF dual-hosted git repository.

dahn pushed a commit to branch 4.14
in repository https://gitbox.apache.org/repos/asf/cloudstack.git


The following commit(s) were added to refs/heads/4.14 by this push:
     new 584fc3a  accountresponse: Fix domainpath description (#4487)
584fc3a is described below

commit 584fc3a3389135d6ad7dd0d655ff72844d88f015
Author: davidjumani <dj...@gmail.com>
AuthorDate: Fri Nov 20 13:58:06 2020 +0530

    accountresponse: Fix domainpath description (#4487)
---
 .../java/org/apache/cloudstack/api/response/AccountResponse.java    | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/api/src/main/java/org/apache/cloudstack/api/response/AccountResponse.java b/api/src/main/java/org/apache/cloudstack/api/response/AccountResponse.java
index e39aaca..d22ee52 100644
--- a/api/src/main/java/org/apache/cloudstack/api/response/AccountResponse.java
+++ b/api/src/main/java/org/apache/cloudstack/api/response/AccountResponse.java
@@ -55,15 +55,15 @@ public class AccountResponse extends BaseResponse implements ResourceLimitAndCou
     private String roleName;
 
     @SerializedName(ApiConstants.DOMAIN_ID)
-    @Param(description = "id of the Domain the account belongs too")
+    @Param(description = "id of the Domain the account belongs to")
     private String domainId;
 
     @SerializedName(ApiConstants.DOMAIN)
-    @Param(description = "name of the Domain the account belongs too")
+    @Param(description = "name of the Domain the account belongs to")
     private String domainName;
 
     @SerializedName(ApiConstants.DOMAIN_PATH)
-    @Param(description = "name of the Domain the account belongs too", since = "4.13")
+    @Param(description = "path of the Domain the account belongs to", since = "4.13")
     private String domainPath;
 
     @SerializedName(ApiConstants.DEFAULT_ZONE_ID)