Skip to content

Commit 7701cef

Browse files
committed
Javadoc: Fix spelling
1 parent 1130e47 commit 7701cef

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
* a property with an <code>ArrayList</code> type to the <code>DynaClass</code> when
6262
* the <code>set(name, index, value)</code> method is called.
6363
* It will also instantiate a new <code>ArrayList</code> and automatically <em>grow</em>
64-
* the <code>List</code> so that it is big enough to accomodate the index being set.
64+
* the <code>List</code> so that it is big enough to accommodate the index being set.
6565
* <code>ArrayList</code> is the default indexed property that LazyDynaBean uses but
6666
* this can be easily changed by overriding the <code>defaultIndexedProperty(name)</code>
6767
* method.</p>
@@ -74,7 +74,7 @@
7474
* <code>null</code> in the <code>LazyDynaBean</code>, then it will instantiate a
7575
* new <code>List</code> or <code>Array</code> as specified by the property's type
7676
* in the <code>DynaClass</code> and automatically <em>grow</em> the <code>List</code>
77-
* or <code>Array</code> so that it is big enough to accomodate the index being set.</p>
77+
* or <code>Array</code> so that it is big enough to accommodate the index being set.</p>
7878
*
7979
* <code>DynaBean myBean = new LazyDynaBean();</code></br>
8080
* <code>MutableDynaClass myClass = (MutableDynaClass)myBean.getDynaClass();</code></br>

src/main/java/org/apache/commons/beanutils/package-info.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -677,7 +677,7 @@
677677
* a property which doesn't exist to the DynaClass when
678678
* the <code>set(name, value)</code> method is called.</li>
679679
* <li><strong><em>Lazy</em> List/Array growth</strong> - If an <em>indexed</em> property is not large
680-
* enough to accomodate the <code>index</code> being set then the <code>List</code> or
680+
* enough to accommodate the <code>index</code> being set then the <code>List</code> or
681681
* <code>Array</code> is automatically <em>grown</em> so that it is.</li>
682682
* <li><strong><em>Lazy</em> List/Array instantiation</strong> - if an <em>indexed</em>
683683
* property doesn't exist then calling the {@link org.apache.commons.beanutils.DynaBean DynaBean's}

0 commit comments

Comments
 (0)