You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2021/11/19 03:19:29 UTC

[commons-text] branch master updated: Fix Javadoc.

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 bbf661a  Fix Javadoc.
bbf661a is described below

commit bbf661aec404f6a1b82d3f8fcc4790c13c3ef5a9
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Thu Nov 18 22:19:27 2021 -0500

    Fix Javadoc.
---
 .../java/org/apache/commons/text/lookup/PropertiesStringLookup.java    | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/commons/text/lookup/PropertiesStringLookup.java b/src/main/java/org/apache/commons/text/lookup/PropertiesStringLookup.java
index 2f5d9a2..7e155db 100644
--- a/src/main/java/org/apache/commons/text/lookup/PropertiesStringLookup.java
+++ b/src/main/java/org/apache/commons/text/lookup/PropertiesStringLookup.java
@@ -25,7 +25,7 @@ import java.util.Properties;
 import org.apache.commons.lang3.StringUtils;
 
 /**
- * Looks up keys from an XML document.
+ * Looks up keys from a properties file.
  * <p>
  * Looks up the value for a given key in the format "Document::Key".
  * </p>
@@ -36,6 +36,7 @@ import org.apache.commons.lang3.StringUtils;
  * For example: "com/domain/document.properties:key".
  * </p>
  *
+ * @see Properties
  * @since 1.5
  */
 final class PropertiesStringLookup extends AbstractStringLookup {