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

View File

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