Skip to content

Commit 34d1a02

Browse files
committed
Javadoc
1 parent 0a785ab commit 34d1a02

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@
1919
import java.util.Map;
2020

2121
/**
22-
* <p>Provides a <em>light weight</em> <code>DynaBean</code> facade to a <code>Map</code>
22+
* <p>Provides a <em>lightweight</em> <code>DynaBean</code> facade to a <code>Map</code>
2323
* with <em>lazy</em> map/list processing.</p>
2424
*
25-
* <p>Its a <em>light weight</em> <code>DynaBean</code> implementation because there is no
25+
* <p>Its a <em>lightweight</em> <code>DynaBean</code> implementation because there is no
2626
* actual <code>DynaClass</code> associated with this <code>DynaBean</code> - in fact
2727
* it implements the <code>DynaClass</code> interface itself providing <em>pseudo</em> DynaClass
2828
* behavior from the actual values stored in the <code>Map</code>.</p>

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

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

0 commit comments

Comments
 (0)