From c78ed39b2f53a3544b93515e6bb4889eef8c5888 Mon Sep 17 00:00:00 2001 From: Thomas O'Dowd Date: Fri, 26 Jul 2013 17:34:15 +0900 Subject: [PATCH] Fix a few typos in ConfigurationManager. Signed-off-by: Prasanna Santhanam --- .../com/cloud/configuration/ConfigurationManagerImpl.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/server/src/com/cloud/configuration/ConfigurationManagerImpl.java b/server/src/com/cloud/configuration/ConfigurationManagerImpl.java index deebafa168e..3ec35148a7a 100755 --- a/server/src/com/cloud/configuration/ConfigurationManagerImpl.java +++ b/server/src/com/cloud/configuration/ConfigurationManagerImpl.java @@ -725,7 +725,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; @@ -782,17 +782,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(",");