summaryrefslogtreecommitdiff
path: root/src/hand.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/hand.c')
-rw-r--r--src/hand.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/hand.c b/src/hand.c
index 24e9a9d..d6a047d 100644
--- a/src/hand.c
+++ b/src/hand.c
@@ -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)