Skip to content

Commit 2dd3a54

Browse files
committed
Javadoc: English, not Latin
1 parent e72713f commit 2dd3a54

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
* BeanUtils 1.7.0 delegated all conversion to String to the converter
3232
* registered for the <code>String.class</code>. One of the improvements in
3333
* BeanUtils 1.8.0 was to upgrade the {@link Converter} implementations so
34-
* that they could handle conversion to String for their type (e.g.
34+
* that they could handle conversion to String for their type (for example
3535
* IntegerConverter now handles conversion from an Integer to a String as
3636
* well as String to Integer).
3737
* </p>

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -97,13 +97,13 @@
9797
* uses the Class to automatically populate elements:</p>
9898
*
9999
* <pre><code>
100-
* // e.g. For Maps
100+
* // for example For Maps
101101
* List lazyList = new LazyDynaList(TreeMap.class);
102102
*
103-
* // e.g. For POJO Beans
103+
* // for example For POJO Beans
104104
* List lazyList = new LazyDynaList(MyPojo.class);
105105
*
106-
* // e.g. For DynaBeans
106+
* // for example For DynaBeans
107107
* List lazyList = new LazyDynaList(MyDynaBean.class);
108108
* </code></pre>
109109
*
@@ -113,15 +113,15 @@
113113
* the DynaClass to automatically populate elements:</p>
114114
*
115115
* <pre><code>
116-
* // e.g. For Maps
116+
* // for example For Maps
117117
* DynaClass dynaClass = new LazyDynaMap(new HashMap());
118118
* List lazyList = new LazyDynaList(dynaClass);
119119
*
120-
* // e.g. For POJO Beans
120+
* // for example For POJO Beans
121121
* DynaClass dynaClass = (new WrapDynaBean(myPojo)).getDynaClass();
122122
* List lazyList = new LazyDynaList(dynaClass);
123123
*
124-
* // e.g. For DynaBeans
124+
* // for example For DynaBeans
125125
* DynaClass dynaClass = new BasicDynaClass(properties);
126126
* List lazyList = new LazyDynaList(dynaClass);
127127
* </code></pre>

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1049,11 +1049,11 @@ protected Object getPropertyOfMapBean(final Map<?, ?> bean, String propertyName)
10491049
* be returned. If the last (or only) element has no property with the
10501050
* specified name, <code>null</code> is returned.
10511051
* <p>
1052-
* If the property is an indexed property (e.g. <code>String[]</code>),
1052+
* If the property is an indexed property (for example <code>String[]</code>),
10531053
* this method will return the type of the items within that array.
10541054
* Note that from Java 8 and newer, this method do not support
10551055
* such index types from items within an Collection, and will
1056-
* instead return the collection type (e.g. java.util.List) from the
1056+
* instead return the collection type (for example java.util.List) from the
10571057
* getter mtethod.
10581058
*
10591059
* @param bean Bean for which a property descriptor is requested

0 commit comments

Comments
 (0)