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 8ed430b Better param name. 8ed430b is described below commit 8ed430b43f831b17ccfa29516cbccb38d0ff9b27 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Wed Dec 11 12:06:27 2019 -0500 Better param name. --- src/main/java/org/apache/commons/text/matcher/StringMatcher.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/apache/commons/text/matcher/StringMatcher.java b/src/main/java/org/apache/commons/text/matcher/StringMatcher.java index 681c211..292c47c 100644 --- a/src/main/java/org/apache/commons/text/matcher/StringMatcher.java +++ b/src/main/java/org/apache/commons/text/matcher/StringMatcher.java @@ -27,16 +27,16 @@ public interface StringMatcher { /** * Returns the number of matching characters, zero for no match. * <p> - * This method is called to check for a match. The parameter {@code pos} represents the current position to be + * This method is called to check for a match. The parameter {@code start} represents the start position to be * checked in the string {@code buffer} (a character array which must not be changed). The API guarantees that - * {@code pos} is a valid index for {@code buffer}. + * {@code start} is a valid index for {@code buffer}. * </p> * <p> * The character array may be larger than the active area to be matched. Only values in the buffer between the * specified indices may be accessed. * </p> * <p> - * The matching code may check one character or many. It may check characters preceding {@code pos} as well as + * The matching code may check one character or many. It may check characters preceding {@code start} as well as * those after, so long as no checks exceed the bounds specified. * </p> * <p>