From e757c4a3bec8b0e8d198531a28327332af00a9ba Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 12 Dec 2018 12:50:58 +1100 Subject: Cleanup: use colon separator after parameter Helps separate variable names from descriptive text. Was already used in some parts of the code, double space and dashes were used elsewhere. --- source/blender/blenlib/intern/gsqueue.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source/blender/blenlib/intern/gsqueue.c') diff --git a/source/blender/blenlib/intern/gsqueue.c b/source/blender/blenlib/intern/gsqueue.c index 29b882d0e99..4100a390e6f 100644 --- a/source/blender/blenlib/intern/gsqueue.c +++ b/source/blender/blenlib/intern/gsqueue.c @@ -58,7 +58,7 @@ struct _GSQueue { /** * Create a new GSQueue. * - * \param elem_size The size of the structures in the queue. + * \param elem_size: The size of the structures in the queue. * \retval The new queue */ GSQueue *BLI_gsqueue_new(size_t elem_size) @@ -131,7 +131,7 @@ void BLI_gsqueue_pop(GSQueue *gq, void *r_item) /** * Push an element onto the tail of the queue. * - * \param item A pointer to an appropriately + * \param item: A pointer to an appropriately * sized structure (the size passed to BLI_gsqueue_new). */ void BLI_gsqueue_push(GSQueue *gq, const void *item) @@ -159,7 +159,7 @@ void BLI_gsqueue_push(GSQueue *gq, const void *item) * Push an element back onto the head of the queue (so * it would be returned from the next call to BLI_gsqueue_pop). * - * \param item A pointer to an appropriately + * \param item: A pointer to an appropriately * sized structure (the size passed to BLI_gsqueue_new). */ void BLI_gsqueue_push_back(GSQueue *gq, const void *item) -- cgit v1.2.3