Merge pull request #541 from LouisCAD/patch-1

Add missing val and fix indentation in README
This commit is contained in:
Jesse Wilson
2018-05-15 06:15:33 -04:00
committed by GitHub

View File

@@ -520,8 +520,8 @@ encode as JSON:
```kotlin
@JsonClass(generateAdapter = true)
data class BlackjackHand(
hidden_card: Card,
visible_cards: List<Card>
val hidden_card: Card,
val visible_cards: List<Card>
)
```