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
commit 16938ab83a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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