Skip to content

Commit 553ba3f

Browse files
committed
Normalize spelling
1 parent 0b6214c commit 553ba3f

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

src/changes/changes.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -434,7 +434,7 @@ src/test/java/org/apache/commons/beanutils/bugs/Jira520TestCase.java.">
434434
Create new methods getPropertyOfMapBean and setPropertyOfMapBean that the existing
435435
setNestedProperty and getNestedProperty methods now call when they discover the bean
436436
they are accessing implements Map. This makes it much easier for users to subclass
437-
and customise this behaviour of PropertyUtilsBean, eg in order to restore pre-1.5 behaviour.
437+
and customize this behaviour of PropertyUtilsBean, eg in order to restore pre-1.5 behaviour.
438438
This patch also causes an exception to be thrown when the propertyName passed to
439439
getPropertyOfMapBean or setPropertyOfMapBean has MAPPED_DELIM or INDEXED_DELIM chars in
440440
it. This never worked as expected before (the whole string was treated literally as the

src/main/java/org/apache/commons/beanutils/PropertyUtilsBean.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1828,7 +1828,7 @@ public void setProperty(final Object bean, final String name, final Object value
18281828
* 1.6.0, 1.6.1, 1.7.0 was for "a.b" to mean a.setB(obj) if such a method existed, and a.put(b, obj) otherwise. In version 1.5 it meant a.put(b, obj) always
18291829
* (ie the same as the behaviour in the current version). In versions prior to 1.5 it meant a.setB(obj) always. [yes, this is all <em>very</em> unfortunate]
18301830
* <p>
1831-
* Users who would like to customise the meaning of "a.b" in method setNestedProperty when a is a Map can create a custom subclass of this class and
1831+
* Users who would like to customize the meaning of "a.b" in method setNestedProperty when a is a Map can create a custom subclass of this class and
18321832
* override this method to implement the behaviour of their choice, such as restoring the pre-1.4 behaviour of this class if they wish. When overriding this
18331833
* method, do not forget to deal with MAPPED_DELIM and INDEXED_DELIM characters in the propertyName.
18341834
* <p>

src/main/java/org/apache/commons/beanutils/converters/BooleanArrayConverter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
* on how this instance is constructed.</p>
2929
*
3030
* <p>By default, the values to be converted are expected to be those
31-
* recognized by a default instance of BooleanConverter. A customised
31+
* recognized by a default instance of BooleanConverter. A customized
3232
* BooleanConverter can be provided in order to recognise alternative values
3333
* as true/false. </p>
3434
*

src/test/java/org/apache/commons/beanutils/PropsFirstPropertyUtilsBean.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
import java.util.Map;
2222

2323
/**
24-
* A PropertyUtilsBean which customises the behaviour of the
24+
* A PropertyUtilsBean which customizes the behaviour of the
2525
* setNestedProperty and getNestedProperty methods to look for
2626
* simple properties in preference to map entries.
2727
*

src/test/java/org/apache/commons/beanutils/converters/BooleanArrayConverterTestCase.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public BooleanArrayConverterTestCase(final String name) {
4848

4949
/**
5050
* Check that the user can specify non-standard true/false values by
51-
* providing a customised BooleanConverter.
51+
* providing a customized BooleanConverter.
5252
*/
5353
public void testAdditionalStrings() {
5454
final String[] trueStrings = {"sure"};

0 commit comments

Comments
 (0)