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 db83609 commit f103462Copy full SHA for f103462
dot-parse/src/main/java/com/google/common/labs/parse/Parser.java
@@ -93,7 +93,10 @@ public abstract class Parser<T> {
93
};
94
95
/**
96
- * String literal quoted by {@code quoteChar} and allows backslash escapes (no Unicode escapes).
+ * String literal quoted by {@code quoteChar} and allows backslash escapes (no Unicode escapes or
97
+ * C-style escapes like '\n', '\t' etc.).
98
+ *
99
+ * <p>For example, {@code "foo\\bar"} is parsed as {@code "foo\bar"}.
100
*
101
* @since 9.4
102
*/
0 commit comments