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