Merge pull request #489 from jemaystermind/jemaystermind/indent-json

Indent JSON string properly
This commit is contained in:
Jesse Wilson
2018-04-07 05:07:03 -07:00
committed by GitHub

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"
} }
] ]
``` ```