Skip to content

Commit f103462

Browse files
committed
javadoc for quotedStringWithEscapes()
1 parent db83609 commit f103462

File tree

1 file changed

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

1 file changed

+4
-1
lines changed

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

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,10 @@ public abstract class Parser<T> {
9393
};
9494

9595
/**
96-
* String literal quoted by {@code quoteChar} and allows backslash escapes (no Unicode escapes).
96+
* 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"}.
97100
*
98101
* @since 9.4
99102
*/

0 commit comments

Comments
 (0)