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

View File

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