Skip to content

Commit

Permalink
Fixed javadoc for JsonWriter as reported in
Browse files Browse the repository at this point in the history
  • Loading branch information
inder123 committed Sep 27, 2015
1 parent 93605e7 commit 1e90044
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gson/src/main/java/com/google/gson/stream/JsonWriter.java
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
* This code encodes the above structure: <pre> {@code
* public void writeJsonStream(OutputStream out, List<Message> messages) throws IOException {
* JsonWriter writer = new JsonWriter(new OutputStreamWriter(out, "UTF-8"));
* writer.setIndentSpaces(4);
* writer.setIndent(" ");
* writeMessagesArray(writer, messages);
* writer.close();
* }
Expand Down

0 comments on commit 1e90044

Please sign in to comment.