Fix a few typos in ConfigurationManager.

Signed-off-by: Prasanna Santhanam <[email protected]>
(cherry picked from commit c78ed39b2f53a3544b93515e6bb4889eef8c5888)


Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/5552d268
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/5552d268
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/5552d268

Branch: refs/heads/master
Commit: 5552d26872a13e7eab584412f787ae99551df23e
Parents: 34e751f
Author: Thomas O'Dowd <[email protected]>
Authored: Fri Jul 26 17:34:15 2013 +0900
Committer: Prasanna Santhanam <[email protected]>
Committed: Tue Jul 30 11:25:15 2013 +0530

----------------------------------------------------------------------
 .../com/cloud/configuration/ConfigurationManagerImpl.java    | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/5552d268/server/src/com/cloud/configuration/ConfigurationManagerImpl.java
----------------------------------------------------------------------
diff --git a/server/src/com/cloud/configuration/ConfigurationManagerImpl.java 
b/server/src/com/cloud/configuration/ConfigurationManagerImpl.java
index 6c32c55..d5e6c00 100755
--- a/server/src/com/cloud/configuration/ConfigurationManagerImpl.java
+++ b/server/src/com/cloud/configuration/ConfigurationManagerImpl.java
@@ -733,7 +733,7 @@ public class ConfigurationManagerImpl extends ManagerBase 
implements Configurati
 
         if (type.equals(Boolean.class)) {
             if (!(value.equals("true") || value.equals("false"))) {
-                s_logger.error("Configuration variable " + name + " is 
expecting true or false in stead of " + value);
+                s_logger.error("Configuration variable " + name + " is 
expecting true or false instead of " + value);
                 return "Please enter either 'true' or 'false'.";
             }
             return null;
@@ -790,17 +790,17 @@ public class ConfigurationManagerImpl extends ManagerBase 
implements Configurati
             } else if (range.equals("hypervisorList")) {
                 String[] hypervisors = value.split(",");
                 if (hypervisors == null) {
-                    return "Please enter hypervisor list, seperated by comma";
+                    return "Please enter hypervisor list, separated by comma";
                 }
                 for (String hypervisor : hypervisors) {
                     if (HypervisorType.getType(hypervisor) == 
HypervisorType.Any
                             || HypervisorType.getType(hypervisor) == 
HypervisorType.None) {
-                        return "Please enter valid hypervisor type";
+                        return "Please enter a valid hypervisor type";
                     }
                 }
             } else if (range.equalsIgnoreCase("instanceName")) {
                 if (!NetUtils.verifyInstanceName(value)) {
-                    return "Instance name can not contain hyphen, spaces and 
plus sign";
+                    return "Instance name can not contain hyphen, space or 
plus sign";
                 }
             } else if (range.equals("routes")) {
                 String[] routes = value.split(",");

Reply via email to