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-text.git


The following commit(s) were added to refs/heads/master by this push:
     new 7629b0dd Javadoc
7629b0dd is described below

commit 7629b0dd588fa43d94e982e1bd19aaf15c655891
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Sun Dec 17 14:41:18 2023 -0500

    Javadoc
---
 src/main/java/org/apache/commons/text/ExtendedMessageFormat.java | 8 ++++----
 src/main/java/org/apache/commons/text/FormatFactory.java         | 2 +-
 src/main/java/org/apache/commons/text/TextStringBuilder.java     | 2 +-
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/src/main/java/org/apache/commons/text/ExtendedMessageFormat.java 
b/src/main/java/org/apache/commons/text/ExtendedMessageFormat.java
index 1e149408..f8a3dc15 100644
--- a/src/main/java/org/apache/commons/text/ExtendedMessageFormat.java
+++ b/src/main/java/org/apache/commons/text/ExtendedMessageFormat.java
@@ -32,12 +32,12 @@ import org.apache.commons.lang3.StringUtils;
 import org.apache.commons.text.matcher.StringMatcherFactory;
 
 /**
- * Extends {@code java.text.MessageFormat} to allow pluggable/additional 
formatting
+ * Extends {@link java.text.MessageFormat} to allow pluggable/additional 
formatting
  * options for embedded format elements.  Client code should specify a registry
  * of {@code FormatFactory} instances associated with {@code String}
  * format names.  This registry will be consulted when the format elements are
  * parsed from the message pattern.  In this way custom patterns can be 
specified,
- * and the formats supported by {@code java.text.MessageFormat} can be 
overridden
+ * and the formats supported by {@link java.text.MessageFormat} can be 
overridden
  * at the format and/or format style level (see MessageFormat).  A "format 
element"
  * embedded in the message pattern is specified (<b>()?</b> signifies 
optionality):<br>
  * {@code {}<i>argument-number</i><b>(</b>{@code ,}<i>format-name</i><b>
@@ -45,7 +45,7 @@ import org.apache.commons.text.matcher.StringMatcherFactory;
  *
  * <p>
  * <i>format-name</i> and <i>format-style</i> values are trimmed of 
surrounding whitespace
- * in the manner of {@code java.text.MessageFormat}.  If <i>format-name</i> 
denotes
+ * in the manner of {@link java.text.MessageFormat}.  If <i>format-name</i> 
denotes
  * {@code FormatFactory formatFactoryInstance} in {@code registry}, a {@code 
Format}
  * matching <i>format-name</i> and <i>format-style</i> is requested from
  * {@code formatFactoryInstance}.  If this is successful, the {@code Format}
@@ -58,7 +58,7 @@ import org.apache.commons.text.matcher.StringMatcherFactory;
  * {@code UnsupportedOperationException} if called.
  * </p>
  *
- * <p>Limitations inherited from {@code java.text.MessageFormat}:</p>
+ * <p>Limitations inherited from {@link java.text.MessageFormat}:</p>
  * <ul>
  * <li>When using "choice" subformats, support for nested formatting 
instructions is limited
  *     to that provided by the base class.</li>
diff --git a/src/main/java/org/apache/commons/text/FormatFactory.java 
b/src/main/java/org/apache/commons/text/FormatFactory.java
index c5c2c514..a4457763 100644
--- a/src/main/java/org/apache/commons/text/FormatFactory.java
+++ b/src/main/java/org/apache/commons/text/FormatFactory.java
@@ -33,7 +33,7 @@ public interface FormatFactory {
      * @param name The format type name
      * @param arguments Arguments used to create the format instance. This 
allows the
      *                  {@code FormatFactory} to implement the "format style"
-     *                  concept from {@code java.text.MessageFormat}.
+     *                  concept from {@link java.text.MessageFormat}.
      * @param locale The locale, may be null
      * @return The format instance
      */
diff --git a/src/main/java/org/apache/commons/text/TextStringBuilder.java 
b/src/main/java/org/apache/commons/text/TextStringBuilder.java
index 5bae9788..1cc2736f 100644
--- a/src/main/java/org/apache/commons/text/TextStringBuilder.java
+++ b/src/main/java/org/apache/commons/text/TextStringBuilder.java
@@ -284,7 +284,7 @@ public class TextStringBuilder implements CharSequence, 
Appendable, Serializable
     /**
      * The maximum size buffer to allocate.
      *
-     * <p>This is set to the same size used in the JDK {@code 
java.util.ArrayList}:</p>
+     * <p>This is set to the same size used in the JDK {@link 
java.util.ArrayList}:</p>
      * <blockquote>
      * Some VMs reserve some header words in an array.
      * Attempts to allocate larger arrays may result in

Reply via email to