diff --git a/moshi/src/main/java/com/squareup/moshi/JsonReader.java b/moshi/src/main/java/com/squareup/moshi/JsonReader.java index 949a5e6..0943f95 100644 --- a/moshi/src/main/java/com/squareup/moshi/JsonReader.java +++ b/moshi/src/main/java/com/squareup/moshi/JsonReader.java @@ -85,8 +85,8 @@ import okio.Source; * ]} * This code implements the parser for the above structure:
   {@code
  *
- *   public List readJsonStream(InputStream in) throws IOException {
- *     JsonReader reader = new JsonReader(new InputStreamReader(in, "UTF-8"));
+ *   public List readJsonStream(Source source) throws IOException {
+ *     JsonReader reader = new JsonReader(source);
  *     try {
  *       return readMessagesArray(reader);
  *     } finally {