Polish docs

Closes gh-4446
This commit is contained in:
Johnny Lim
2015-11-12 22:33:29 +09:00
committed by Stephane Nicoll
parent 8749fc745b
commit 4d9111606b
9 changed files with 12 additions and 12 deletions

View File

@@ -353,7 +353,7 @@ public class PropertiesConfigurationFactory<T>
}
/**
* Customize the databinder.
* Customize the data binder.
* @param dataBinder the data binder that will be used to bind and validate
*/
protected void customizeBinder(DataBinder dataBinder) {

View File

@@ -161,7 +161,7 @@ public class PropertySourcesPropertyValues implements PropertyValues {
value = resolver.getProperty(propertyName, Object.class);
}
catch (RuntimeException ex) {
// Probably could not convert to Object, weird, but ignoreable
// Probably could not convert to Object, weird, but ignorable
}
if (value == null) {
value = source.getProperty(propertyName.toUpperCase());

View File

@@ -72,7 +72,7 @@ public class YamlConfigurationFactory<T>
/**
* Sets a validation constructor which will be applied to the YAML doc to see whether
* it matches the expected Javabean.
* it matches the expected JavaBean.
* @param type the root type
*/
public YamlConfigurationFactory(Class<?> type) {

View File

@@ -27,7 +27,7 @@ import org.yaml.snakeyaml.nodes.NodeId;
/**
* Extended version of snakeyaml's Constructor class to facilitate mapping custom YAML
* keys to Javabean property names.
* keys to JavaBean property names.
*
* @author Luke Taylor
*/
@@ -57,8 +57,8 @@ public class YamlJavaBeanPropertyConstructor extends Constructor {
}
/**
* Adds an alias for a Javabean property name on a particular type. The values of YAML
* keys with the alias name will be mapped to the Javabean property.
* Adds an alias for a JavaBean property name on a particular type. The values of YAML
* keys with the alias name will be mapped to the JavaBean property.
* @param alias the alias to map
* @param type the type of property
* @param name the property name

View File

@@ -149,7 +149,7 @@ public abstract class AbstractLoggingSystem extends LoggingSystem {
/**
* Reinitialize the logging system if required. Called when
* {@link #getSelfInitializationConfig()} is used and the log file hasn't changed. May
* be used to reload configuration (for example to pickup additional System
* be used to reload configuration (for example to pick up additional System
* properties).
* @param initializationContext the logging initialization context
*/