Merge pull request #34 from square/jw/javadoc

Correct Javadoc code usage.
This commit is contained in:
Jesse Wilson 2015-04-12 06:02:16 -04:00
commit 9963e3bf09

View file

@ -85,8 +85,8 @@ import okio.Source;
* ]}</pre>
* This code implements the parser for the above structure: <pre> {@code
*
* public List<Message> readJsonStream(InputStream in) throws IOException {
* JsonReader reader = new JsonReader(new InputStreamReader(in, "UTF-8"));
* public List<Message> readJsonStream(Source source) throws IOException {
* JsonReader reader = new JsonReader(source);
* try {
* return readMessagesArray(reader);
* } finally {