diff options
Diffstat (limited to 'src/hand.c')
| -rw-r--r-- | src/hand.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -16,7 +16,7 @@ static int hand_comparator(const void *a, const void *b) /** * Sord the cards in a hand - * @param[inout] h Pointer to hand that should be sorted + * @param[in,out] h Pointer to hand that should be sorted */ void hand_sort(hand_t *h) { @@ -27,7 +27,7 @@ void hand_sort(hand_t *h) /** * Removes a card from a hand by setting it to invalid value 0 - * @param[inout] h Hand to remove card from + * @param[in,out] h Hand to remove card from * @param[in] card_index Index of card to remove */ void hand_remove_card(hand_t *h, const uint8_t card_index) |
