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 de48776e Javadoc
de48776e is described below

commit de48776ebe5d3dbd62a077d9bb6e217b11a7b66a
Author: Gary Gregory <[email protected]>
AuthorDate: Fri Nov 7 22:03:47 2025 -0500

    Javadoc
    
    Use emphasis instead of italics
---
 .../org/apache/commons/beanutils2/converters/InstantConverter.java  | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git 
a/src/main/java/org/apache/commons/beanutils2/converters/InstantConverter.java 
b/src/main/java/org/apache/commons/beanutils2/converters/InstantConverter.java
index 0d3bdc20..01176aca 100644
--- 
a/src/main/java/org/apache/commons/beanutils2/converters/InstantConverter.java
+++ 
b/src/main/java/org/apache/commons/beanutils2/converters/InstantConverter.java
@@ -21,7 +21,7 @@ import java.time.Instant;
 /**
  * {@link org.apache.commons.beanutils2.Converter} implementation that handles 
conversion to and from {@link Instant} objects.
  * <p>
- * Can be configured to either return a <i>default value</i> or throw a {@code 
ConversionException} if a conversion error occurs.
+ * Can be configured to either return a <em>default value</em> or throw a 
{@code ConversionException} if a conversion error occurs.
  * </p>
  *
  * @since 2.0
@@ -30,14 +30,14 @@ import java.time.Instant;
 public final class InstantConverter extends DateTimeConverter<Instant> {
 
     /**
-     * Constructs a {@link Instant} <i>Converter</i> that throws a {@code 
ConversionException} if an error occurs.
+     * Constructs a {@link Instant} <em>Converter</em> that throws a {@code 
ConversionException} if an error occurs.
      */
     public InstantConverter() {
         super();
     }
 
     /**
-     * Constructs a {@link Instant} <i>Converter</i> that returns a default 
value if an error occurs.
+     * Constructs a {@link Instant} <em>Converter</em> that returns a default 
value if an error occurs.
      *
      * @param defaultValue The default value to be returned if the value to be 
converted is missing or an error occurs converting the value.
      */

Reply via email to