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 44a3eeb commit 9d25632Copy full SHA for 9d25632
dot-parse/src/main/java/com/google/common/labs/parse/Parser.java
@@ -221,10 +221,10 @@ public static Parser<String> string(String value) {
221
* <p>For example:
222
*
223
* <pre>{@code
224
- * quotedStringWithEscapes('"', chars(1)).parse("foo\\bar");
+ * quotedStringWithEscapes('"', chars(1)).parse("foo\\\\bar");
225
* }</pre>
226
227
- * will treat the escaped character as literal and return {@code foo\bar}.
+ * will treat the escaped character as literal and return {@code "foo\\bar"}.
228
229
* <p>You can also support Unicode escaping:
230
0 commit comments