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

commit 1df1c0cdaf5a1101860cf7422d01d06d3d33329d
Author: Gary D. Gregory <[email protected]>
AuthorDate: Mon Sep 22 13:18:33 2025 -0400

    Javadoc
---
 .../org/apache/commons/text/lookup/AbstractPathFencedLookup.java    | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git 
a/src/main/java/org/apache/commons/text/lookup/AbstractPathFencedLookup.java 
b/src/main/java/org/apache/commons/text/lookup/AbstractPathFencedLookup.java
index 2a980ab2..c9887388 100644
--- a/src/main/java/org/apache/commons/text/lookup/AbstractPathFencedLookup.java
+++ b/src/main/java/org/apache/commons/text/lookup/AbstractPathFencedLookup.java
@@ -30,7 +30,7 @@ import java.util.stream.Collectors;
 abstract class AbstractPathFencedLookup extends AbstractStringLookup {
 
     /**
-     * Fences guarding Path resolution.
+     * A fence is made of Paths guarding Path resolution.
      */
     protected final List<Path> fences;
 
@@ -44,11 +44,11 @@ abstract class AbstractPathFencedLookup extends 
AbstractStringLookup {
     }
 
     /**
-     * Gets a Path for the given file name checking that it resolves within 
our fences.
+     * Gets a Path for the given file name checking that it resolves within 
our fence.
      *
      * @param fileName the file name to resolve.
      * @return a fenced Path.
-     * @throws IllegalArgumentException if the file name is not without our 
fences.
+     * @throws IllegalArgumentException if the file name is not without our 
fence.
      */
     protected Path getPath(final String fileName) {
         final Path path = Paths.get(fileName);

Reply via email to