summaryrefslogtreecommitdiff
path: root/src/hand.c
diff options
context:
space:
mode:
authorReiner Herrmann <reiner@reiner-h.de>2011-01-29 16:20:40 +0100
committerReiner Herrmann <reiner@reiner-h.de>2011-01-29 16:20:40 +0100
commitde36871c582a4f228df71e15560c020f34d39d4a (patch)
tree07b5ee2e202b1bec7547e3b3ac8c857d7fec6540 /src/hand.c
parenta85546a9a58ce313302f1be91923a14c5723375c (diff)
added more documentation
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)