We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0eb82c commit 8ffc726Copy full SHA for 8ffc726
dot-parse/src/main/java/com/google/common/labs/parse/Parser.java
@@ -63,14 +63,14 @@
63
*/
64
public abstract class Parser<T> {
65
/**
66
- * One or more regex {@code \w} characters.
+ * One or more regex {@code \w+} characters.
67
*
68
* @since 9.4
69
70
public static final Parser<String> WORD = consecutive(CharPredicate.WORD, "word");
71
72
73
- * One or more regex {@code \d} characters.
+ * One or more regex {@code \d+} characters.
74
75
76
0 commit comments