This is an automated email from the ASF dual-hosted git repository.
ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-beanutils.git
The following commit(s) were added to refs/heads/master by this push:
new f838c3a8 Javadoc
f838c3a8 is described below
commit f838c3a8e99585bc93e49a9f61de1175f54c6d0b
Author: Gary Gregory <[email protected]>
AuthorDate: Tue Jul 1 18:09:54 2025 -0400
Javadoc
---
src/main/java/org/apache/commons/beanutils2/LazyDynaMap.java | 4 ++--
src/main/java/org/apache/commons/beanutils2/package-info.java | 6 +++---
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/main/java/org/apache/commons/beanutils2/LazyDynaMap.java
b/src/main/java/org/apache/commons/beanutils2/LazyDynaMap.java
index 9d7a879b..e0b8737a 100644
--- a/src/main/java/org/apache/commons/beanutils2/LazyDynaMap.java
+++ b/src/main/java/org/apache/commons/beanutils2/LazyDynaMap.java
@@ -21,10 +21,10 @@ import java.util.Objects;
/**
* <p>
- * Provides a <em>light weight</em> {@code DynaBean</code> facade to a
<code>Map}
+ * Provides a <em>lightweight</em> {@code DynaBean</code> facade to a
<code>Map}
* with <em>lazy</em> map/list processing.</p>
*
- * <p>Its a <em>light weight</em> {@code DynaBean} implementation because
there is no
+ * <p>Its a <em>lightweight</em> {@code DynaBean} implementation because there
is no
* actual {@code DynaClass</code> associated with this <code>DynaBean} - in
fact
* it implements the {@code DynaClass} interface itself providing
<em>pseudo</em> DynaClass
* behavior from the actual values stored in the {@code Map}.</p>
diff --git a/src/main/java/org/apache/commons/beanutils2/package-info.java
b/src/main/java/org/apache/commons/beanutils2/package-info.java
index 50b8a996..4d4b365d 100644
--- a/src/main/java/org/apache/commons/beanutils2/package-info.java
+++ b/src/main/java/org/apache/commons/beanutils2/package-info.java
@@ -646,7 +646,7 @@
* <ul>
* <li>1. <a href="#LazyDynaBean">LazyDynaBean</a> - A <em>Lazy</em>
* {@link org.apache.commons.beanutils2.DynaBean}</li>
- * <li>2. <a href="#LazyDynaMap">LazyDynaMap</a> - A <em>light weight</em>
+ * <li>2. <a href="#LazyDynaMap">LazyDynaMap</a> - A <em>lightweight</em>
* {@link org.apache.commons.beanutils2.DynaBean} facade to a Map
* with <em>lazy</em> map/list processing</li>
* <li>3. <a href="#LazyDynaList">LazyDynaList</a> - A <em>lazy list</em>
@@ -709,9 +709,9 @@
* dynaBean.set("address", 2, addressLine3); // indexed
* </pre>
*
- * <p><strong>2. {@link org.apache.commons.beanutils2.LazyDynaMap}</strong> is
a <em>light weight</em>
+ * <p><strong>2. {@link org.apache.commons.beanutils2.LazyDynaMap}</strong> is
a <em>lightweight</em>
* {@code DynaBean</code> facade to a <code>Map} with all the usual
<em>lazy</em> features. Its
- * <em>light weight</em> because it doesn't have an associated {@code
DynaClass} containing all the properties.
+ * <em>lightweight</em> because it doesn't have an associated {@code
DynaClass} containing all the properties.
* In fact it actually implements the {@code DynaClass</code> interface
itself (and <code>MutableDynaClass})
* and derives all the <em>DynaClass</em> information from the actual
contents of the {@code Map}. A
* {@code LazyDynaMap</code> can be created around an existing <code>Map}
or can instantiate its own