Repository: commons-text Updated Branches: refs/heads/master add84546d -> e8832d26f
Javadoc tweaks. Project: http://git-wip-us.apache.org/repos/asf/commons-text/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-text/commit/e8832d26 Tree: http://git-wip-us.apache.org/repos/asf/commons-text/tree/e8832d26 Diff: http://git-wip-us.apache.org/repos/asf/commons-text/diff/e8832d26 Branch: refs/heads/master Commit: e8832d26f3bdc6502877bfef37a0d264aea05800 Parents: add8454 Author: Gary Gregory <garydgreg...@gmail.com> Authored: Fri Oct 12 22:30:56 2018 -0600 Committer: Gary Gregory <garydgreg...@gmail.com> Committed: Fri Oct 12 22:30:56 2018 -0600 ---------------------------------------------------------------------- .../commons/text/lookup/StringLookup.java | 4 +- .../commons/text/lookup/package-info.java | 58 ++++++++++---------- 2 files changed, 31 insertions(+), 31 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-text/blob/e8832d26/src/main/java/org/apache/commons/text/lookup/StringLookup.java ---------------------------------------------------------------------- diff --git a/src/main/java/org/apache/commons/text/lookup/StringLookup.java b/src/main/java/org/apache/commons/text/lookup/StringLookup.java index 2252729..93e7e80 100644 --- a/src/main/java/org/apache/commons/text/lookup/StringLookup.java +++ b/src/main/java/org/apache/commons/text/lookup/StringLookup.java @@ -18,14 +18,14 @@ package org.apache.commons.text.lookup; /** - * Lookup a String key to a String value. + * Lookups a String key for a String value. * <p> * This class represents the simplest form of a string to string map. It has a benefit over a map in that it can create * the result on demand based on the key. * </p> * <p> * For example, it would be possible to implement a lookup that used the key as a primary key, and looked up the value - * on demand from the database + * on demand from the database. * </p> * * @since 1.3 http://git-wip-us.apache.org/repos/asf/commons-text/blob/e8832d26/src/main/java/org/apache/commons/text/lookup/package-info.java ---------------------------------------------------------------------- diff --git a/src/main/java/org/apache/commons/text/lookup/package-info.java b/src/main/java/org/apache/commons/text/lookup/package-info.java index 528211b..984aeb4 100644 --- a/src/main/java/org/apache/commons/text/lookup/package-info.java +++ b/src/main/java/org/apache/commons/text/lookup/package-info.java @@ -1,29 +1,29 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -/** - * <p> - * Provides algorithms for looking up strings for use with a {@link org.apache.commons.text.StringSubstitutor}. The main - * class here is {@link org.apache.commons.text.lookup.StringLookupFactory} - * </p> - * - * <p> - * The initial implementation was adapted from Apache Commons Log4j 2.10.1-SNAPSHOT. - * </p> - * - * @since 1.3 - */ -package org.apache.commons.text.lookup; +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +/** + * <p> + * Provides algorithms for looking up strings for use with a {@link org.apache.commons.text.StringSubstitutor}. The main + * class here is {@link org.apache.commons.text.lookup.StringLookupFactory}. + * </p> + * + * <p> + * The initial implementation was adapted from Apache Commons Log4j 2.10.1-SNAPSHOT. + * </p> + * + * @since 1.3 + */ +package org.apache.commons.text.lookup;