Fix Javadoc code formatting for JsonReader.peek().

This commit is contained in:
Eric Cochran
2018-10-08 12:48:44 -07:00
committed by GitHub
parent 2a4d37ece4
commit 931673c264

View File

@@ -478,7 +478,7 @@ public abstract class JsonReader implements Closeable {
* Returns a new {@code JsonReader} that can read data from this {@code JsonReader} without * Returns a new {@code JsonReader} that can read data from this {@code JsonReader} without
* consuming it. The returned reader becomes invalid once this one is next read or closed. * consuming it. The returned reader becomes invalid once this one is next read or closed.
* *
* For example, we can use `peek()` to lookahead and read the same data multiple times. * For example, we can use {@code peek()} to lookahead and read the same data multiple times.
* *
* <pre> {@code * <pre> {@code
* *