mirror of
https://github.com/fankes/moshi.git
synced 2025-10-19 16:09:21 +08:00
small correction in given example
This commit is contained in:
@@ -43,12 +43,12 @@ import javax.annotation.Nullable;
|
||||
* interface HandOfCards {
|
||||
* }
|
||||
*
|
||||
* class BlackjackHand extends HandOfCards {
|
||||
* class BlackjackHand implements HandOfCards {
|
||||
* Card hidden_card;
|
||||
* List<Card> visible_cards;
|
||||
* }
|
||||
*
|
||||
* class HoldemHand extends HandOfCards {
|
||||
* class HoldemHand implements HandOfCards {
|
||||
* Set<Card> hidden_cards;
|
||||
* }
|
||||
*
|
||||
|
Reference in New Issue
Block a user