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 70c645a Javadoc.
70c645a is described below
commit 70c645a7ff7400d0207a9453eb7e1def0782107d
Author: Gary Gregory <[email protected]>
AuthorDate: Fri Jun 26 15:55:27 2020 -0400
Javadoc.
---
src/main/java/org/apache/commons/text/matcher/StringMatcher.java | 4 ++--
1 file changed, 2 insertions(+), 2 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 5cecf0f..e6d0b1f 100644
--- a/src/main/java/org/apache/commons/text/matcher/StringMatcher.java
+++ b/src/main/java/org/apache/commons/text/matcher/StringMatcher.java
@@ -78,7 +78,7 @@ public interface StringMatcher {
* Returns the number of matching characters, {@code 0} if there is no
match.
* <p>
* This method is called to check for a match against a source {@code
buffer}. The parameter {@code start}
- * represents the start position to be checked in the array {@code buffer}
(a character array which MUST not be
+ * represents the start position to be checked in the {@code buffer} (a
character array which MUST not be
* changed). The implementation SHOULD guarantees that {@code start} is a
valid index in {@code buffer}.
* </p>
* <p>
@@ -106,7 +106,7 @@ public interface StringMatcher {
* Returns the number of matching characters, {@code 0} if there is no
match.
* <p>
* This method is called to check for a match against a source {@code
buffer}. The parameter {@code start}
- * represents the start position to be checked in the array {@code buffer}
(a character array which MUST not be
+ * represents the start position to be checked in the {@code buffer} (a
character array which MUST not be
* changed). The implementation SHOULD guarantees that {@code start} is a
valid index in {@code buffer}.
* </p>
* <p>