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

commit 00c29810af24da3a593e1fb09565fdf5250a7320
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Sat Apr 6 15:27:21 2024 -0400

    Javadoc
---
 .../org/apache/commons/text/StringSubstitutor.java   | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/src/main/java/org/apache/commons/text/StringSubstitutor.java 
b/src/main/java/org/apache/commons/text/StringSubstitutor.java
index 9f1b7470..1f0f7867 100644
--- a/src/main/java/org/apache/commons/text/StringSubstitutor.java
+++ b/src/main/java/org/apache/commons/text/StringSubstitutor.java
@@ -492,14 +492,14 @@ public class StringSubstitutor {
     private StringLookup variableResolver;
 
     /**
-     * Creates a new instance with defaults for variable prefix and suffix and 
the escaping character.
+     * Constructs a new instance with defaults for variable prefix and suffix 
and the escaping character.
      */
     public StringSubstitutor() {
         this((StringLookup) null, DEFAULT_PREFIX, DEFAULT_SUFFIX, 
DEFAULT_ESCAPE);
     }
 
     /**
-     * Creates a new instance and initializes it. Uses defaults for variable 
prefix and suffix and the escaping
+     * Constructs a new initialized instance. Uses defaults for variable 
prefix and suffix and the escaping
      * character.
      *
      * @param <V> the type of the values in the map
@@ -510,7 +510,7 @@ public class StringSubstitutor {
     }
 
     /**
-     * Creates a new instance and initializes it. Uses a default escaping 
character.
+     * Constructs a new initialized instance. Uses a default escaping 
character.
      *
      * @param <V> the type of the values in the map
      * @param valueMap the map with the variables' values, may be null
@@ -523,7 +523,7 @@ public class StringSubstitutor {
     }
 
     /**
-     * Creates a new instance and initializes it.
+     * Constructs a new initialized instance.
      *
      * @param <V> the type of the values in the map
      * @param valueMap the map with the variables' values, may be null
@@ -538,7 +538,7 @@ public class StringSubstitutor {
     }
 
     /**
-     * Creates a new instance and initializes it.
+     * Constructs a new initialized instance.
      *
      * @param <V> the type of the values in the map
      * @param valueMap the map with the variables' values, may be null
@@ -554,7 +554,7 @@ public class StringSubstitutor {
     }
 
     /**
-     * Creates a new instance and initializes it.
+     * Constructs a new initialized instance.
      *
      * @param variableResolver the variable resolver, may be null
      */
@@ -563,7 +563,7 @@ public class StringSubstitutor {
     }
 
     /**
-     * Creates a new instance and initializes it.
+     * Constructs a new initialized instance.
      *
      * @param variableResolver the variable resolver, may be null
      * @param prefix the prefix for variables, not null
@@ -581,7 +581,7 @@ public class StringSubstitutor {
     }
 
     /**
-     * Creates a new instance and initializes it.
+     * Constructs a new initialized instance.
      *
      * @param variableResolver the variable resolver, may be null
      * @param prefix the prefix for variables, not null
@@ -600,7 +600,7 @@ public class StringSubstitutor {
     }
 
     /**
-     * Creates a new instance and initializes it.
+     * Constructs a new initialized instance.
      *
      * @param variableResolver the variable resolver, may be null
      * @param prefixMatcher the prefix for variables, not null
@@ -614,7 +614,7 @@ public class StringSubstitutor {
     }
 
     /**
-     * Creates a new instance and initializes it.
+     * Constructs a new initialized instance.
      *
      * @param variableResolver the variable resolver, may be null
      * @param prefixMatcher the prefix for variables, not null

Reply via email to