Indent JSON string properly

This commit is contained in:
Jeremy Tecson 2018-04-07 17:59:02 +08:00 committed by GitHub
parent 5ecb55ad1e
commit bfa14a0d66
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -219,14 +219,14 @@ Say we have a JSON string of this structure:
```java
[
{
"rank": "4",
"suit": "CLUBS"
},
{
"rank": "A",
"suit": "HEARTS"
}
{
"rank": "4",
"suit": "CLUBS"
},
{
"rank": "A",
"suit": "HEARTS"
}
]
```