Skip to content

Commit 9d25632

Browse files
committed
javadoc improvement
1 parent 44a3eeb commit 9d25632

File tree

1 file changed

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

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -221,10 +221,10 @@ public static Parser<String> string(String value) {
221221
* <p>For example:
222222
*
223223
* <pre>{@code
224-
* quotedStringWithEscapes('"', chars(1)).parse("foo\\bar");
224+
* quotedStringWithEscapes('"', chars(1)).parse("foo\\\\bar");
225225
* }</pre>
226226
*
227-
* will treat the escaped character as literal and return {@code foo\bar}.
227+
* will treat the escaped character as literal and return {@code "foo\\bar"}.
228228
*
229229
* <p>You can also support Unicode escaping:
230230
*

0 commit comments

Comments
 (0)