Skip to content

Commit d155adb

Browse files
committed
rename value to string
1 parent da91ad2 commit d155adb

File tree

1 file changed

+1
-1
lines changed
  • dot-parse/src/main/java/com/google/common/labs/parse

1 file changed

+1
-1
lines changed

dot-parse/src/main/java/com/google/common/labs/parse/Parser.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ public static Parser<String> string(String value) {
275275
* @since 9.9.3
276276
*/
277277
public static Parser<?> caseInsensitive(String string) {
278-
checkArgument(string.length() > 0, "value cannot be empty");
278+
checkArgument(string.length() > 0, "string cannot be empty");
279279
return new Parser<String>() {
280280
@Override MatchResult<String> skipAndMatch(
281281
Parser<?> skip, CharInput input, int start, ErrorContext context) {

0 commit comments

Comments
 (0)