This is an automated email from the ASF dual-hosted git repository.

csy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/auron.git


The following commit(s) were added to refs/heads/master by this push:
     new 9f825626 [AURON #1764] Fix Javadoc typo in AuronConfiguration: 
"mapper" → "mapped" (#1765)
9f825626 is described below

commit 9f8256263bccce8977bc6ca0832ff2d1ea681b5f
Author: Thomas <[email protected]>
AuthorDate: Thu Dec 18 11:29:36 2025 +0800

    [AURON #1764] Fix Javadoc typo in AuronConfiguration: "mapper" → "mapped" 
(#1765)
    
    # Which issue does this PR close?
    
    Closes #1764
    
    # Rationale for this change
    
    # What changes are included in this PR?
    
    # Are there any user-facing changes?
    
    # How was this patch tested?
---
 .../org/apache/auron/configuration/AuronConfiguration.java     | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git 
a/auron-core/src/main/java/org/apache/auron/configuration/AuronConfiguration.java
 
b/auron-core/src/main/java/org/apache/auron/configuration/AuronConfiguration.java
index 19ecab7e..d6acc489 100644
--- 
a/auron-core/src/main/java/org/apache/auron/configuration/AuronConfiguration.java
+++ 
b/auron-core/src/main/java/org/apache/auron/configuration/AuronConfiguration.java
@@ -85,7 +85,7 @@ public abstract class AuronConfiguration {
      * default value.
      *
      * @param configOption The configuration option
-     * @param overrideDefault The value to return if no value was mapper for 
any key of the option
+     * @param overrideDefault The value to return if no value was mapped for 
any key of the option
      * @return the configured value associated with the given config option, 
or the overrideDefault
      */
     public int getInteger(ConfigOption<Integer> configOption, int 
overrideDefault) {
@@ -108,7 +108,7 @@ public abstract class AuronConfiguration {
      * default value.
      *
      * @param configOption The configuration option
-     * @param overrideDefault The value to return if no value was mapper for 
any key of the option
+     * @param overrideDefault The value to return if no value was mapped for 
any key of the option
      * @return the configured value associated with the given config option, 
or the overrideDefault
      */
     public long getLong(ConfigOption<Long> configOption, long overrideDefault) 
{
@@ -131,7 +131,7 @@ public abstract class AuronConfiguration {
      * value.
      *
      * @param configOption The configuration option
-     * @param overrideDefault The value to return if no value was mapper for 
any key of the option
+     * @param overrideDefault The value to return if no value was mapped for 
any key of the option
      * @return the configured value associated with the given config option, 
or the overrideDefault
      */
     public boolean getBoolean(ConfigOption<Boolean> configOption, boolean 
overrideDefault) {
@@ -154,7 +154,7 @@ public abstract class AuronConfiguration {
      * value.
      *
      * @param configOption The configuration option
-     * @param overrideDefault The value to return if no value was mapper for 
any key of the option
+     * @param overrideDefault The value to return if no value was mapped for 
any key of the option
      * @return the configured value associated with the given config option, 
or the overrideDefault
      */
     public float getFloat(ConfigOption<Float> configOption, float 
overrideDefault) {
@@ -177,7 +177,7 @@ public abstract class AuronConfiguration {
      * default value.
      *
      * @param configOption The configuration option
-     * @param overrideDefault The value to return if no value was mapper for 
any key of the option
+     * @param overrideDefault The value to return if no value was mapped for 
any key of the option
      * @return the configured value associated with the given config option, 
or the overrideDefault
      */
     public double getDouble(ConfigOption<Double> configOption, double 
overrideDefault) {

Reply via email to