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 <gardgreg...@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 {