Skip to content

Commit f838c3a

Browse files
committed
Javadoc
1 parent 09227ff commit f838c3a

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/main/java/org/apache/commons/beanutils2/LazyDynaMap.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@
2121

2222
/**
2323
* <p>
24-
* Provides a <em>light weight</em> {@code DynaBean</code> facade to a <code>Map}
24+
* Provides a <em>lightweight</em> {@code DynaBean</code> facade to a <code>Map}
2525
* with <em>lazy</em> map/list processing.</p>
2626
*
27-
* <p>Its a <em>light weight</em> {@code DynaBean} implementation because there is no
27+
* <p>Its a <em>lightweight</em> {@code DynaBean} implementation because there is no
2828
* actual {@code DynaClass</code> associated with this <code>DynaBean} - in fact
2929
* it implements the {@code DynaClass} interface itself providing <em>pseudo</em> DynaClass
3030
* behavior from the actual values stored in the {@code Map}.</p>

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -646,7 +646,7 @@
646646
* <ul>
647647
* <li>1. <a href="#LazyDynaBean">LazyDynaBean</a> - A <em>Lazy</em>
648648
* {@link org.apache.commons.beanutils2.DynaBean}</li>
649-
* <li>2. <a href="#LazyDynaMap">LazyDynaMap</a> - A <em>light weight</em>
649+
* <li>2. <a href="#LazyDynaMap">LazyDynaMap</a> - A <em>lightweight</em>
650650
* {@link org.apache.commons.beanutils2.DynaBean} facade to a Map
651651
* with <em>lazy</em> map/list processing</li>
652652
* <li>3. <a href="#LazyDynaList">LazyDynaList</a> - A <em>lazy list</em>
@@ -709,9 +709,9 @@
709709
* dynaBean.set("address", 2, addressLine3); // indexed
710710
* </pre>
711711
*
712-
* <p><strong>2. {@link org.apache.commons.beanutils2.LazyDynaMap}</strong> is a <em>light weight</em>
712+
* <p><strong>2. {@link org.apache.commons.beanutils2.LazyDynaMap}</strong> is a <em>lightweight</em>
713713
* {@code DynaBean</code> facade to a <code>Map} with all the usual <em>lazy</em> features. Its
714-
* <em>light weight</em> because it doesn't have an associated {@code DynaClass} containing all the properties.
714+
* <em>lightweight</em> because it doesn't have an associated {@code DynaClass} containing all the properties.
715715
* In fact it actually implements the {@code DynaClass</code> interface itself (and <code>MutableDynaClass})
716716
* and derives all the <em>DynaClass</em> information from the actual contents of the {@code Map}. A
717717
* {@code LazyDynaMap</code> can be created around an existing <code>Map} or can instantiate its own

0 commit comments

Comments
 (0)