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 d40f01a commit c2e8d41Copy full SHA for c2e8d41
dot-parse/src/main/java/com/google/common/labs/parse/Parser.java
@@ -59,7 +59,7 @@
59
* But it's more efficient to factor out common left prefix. For example instead of {@code
60
* anyOf(expr.followedBy(";"), expr)}, use {@code expr.optionallyFollowedBy(";"))} instead.
61
*
62
- * <p>WARNING: careful this class to parse user-provided input, or in performance critical hot
+ * <p>WARNING: careful using this class to parse user-provided input, or in performance critical hot
63
* paths. Parser combinators are not known for optimal performance and recursive grammars can be
64
* subject to stack overflow error on maliciously crafted input (think of 10K left parens).
65
*/
0 commit comments