Add missing val and fix indentation in README

This commit is contained in:
Louis CAD
2018-05-15 09:23:13 +02:00
committed by GitHub
parent a8616ff10d
commit 6187be0c59

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>
)
```