4444
4545/**
4646 * Type by which queues are referenced. For example, a call to xQueueCreate()
47- * returns an QueueHandle_t variable that can then be used as a parameter to
47+ * returns a QueueHandle_t variable that can then be used as a parameter to
4848 * xQueueSend(), xQueueReceive(), etc.
4949 */
5050struct QueueDefinition ; /* Using old naming convention so as not to break kernel aware debuggers. */
@@ -60,7 +60,7 @@ typedef struct QueueDefinition * QueueSetHandle_t;
6060/**
6161 * Queue sets can contain both queues and semaphores, so the
6262 * QueueSetMemberHandle_t is defined as a type to be used where a parameter or
63- * return value can be either an QueueHandle_t or an SemaphoreHandle_t.
63+ * return value can be either a QueueHandle_t or a SemaphoreHandle_t.
6464 */
6565typedef struct QueueDefinition * QueueSetMemberHandle_t ;
6666
@@ -185,7 +185,7 @@ typedef struct QueueDefinition * QueueSetMemberHandle_t;
185185 * @param pucQueueStorage If uxItemSize is not zero then
186186 * pucQueueStorage must point to a uint8_t array that is at least large
187187 * enough to hold the maximum number of items that can be in the queue at any
188- * one time - which is ( uxQueueLength * uxItemsSize ) bytes. If uxItemSize is
188+ * one time - which is ( uxQueueLength * uxItemSize ) bytes. If uxItemSize is
189189 * zero then pucQueueStorage can be NULL.
190190 *
191191 * @param pxQueueBuffer Must point to a variable of type StaticQueue_t, which
@@ -604,7 +604,7 @@ typedef struct QueueDefinition * QueueSetMemberHandle_t;
604604 * BaseType_t xQueueGenericSend(
605605 * QueueHandle_t xQueue,
606606 * const void * pvItemToQueue,
607- * TickType_t xTicksToWait
607+ * TickType_t xTicksToWait,
608608 * BaseType_t xCopyPosition
609609 * );
610610 * @endcode
@@ -1189,7 +1189,7 @@ void vQueueDelete( QueueHandle_t xQueue ) PRIVILEGED_FUNCTION;
11891189 *
11901190 * // ...
11911191 *
1192- * if( xHigherPrioritytaskWoken == pdTRUE )
1192+ * if( xHigherPriorityTaskWoken == pdTRUE )
11931193 * {
11941194 * // Writing to the queue caused a task to unblock and the unblocked task
11951195 * // has a priority higher than or equal to the priority of the currently
@@ -1451,7 +1451,7 @@ BaseType_t xQueueGiveFromISR( QueueHandle_t xQueue,
14511451 * // task will be woken.
14521452 * }
14531453 *
1454- * if( xHigherPrioritytaskWoken == pdTRUE );
1454+ * if( xHigherPriorityTaskWoken == pdTRUE )
14551455 * {
14561456 * // As xHigherPriorityTaskWoken is now set to pdTRUE then a context
14571457 * // switch should be requested. The macro used is port specific and
@@ -1664,7 +1664,7 @@ BaseType_t xQueueGiveMutexRecursive( QueueHandle_t xMutex ) PRIVILEGED_FUNCTION;
16641664 * Note 2: Blocking on a queue set that contains a mutex will not cause the
16651665 * mutex holder to inherit the priority of the blocked task.
16661666 *
1667- * Note 3: An additional 4 bytes of RAM is required for each space in a every
1667+ * Note 3: An additional 4 bytes of RAM is required for each space in every
16681668 * queue added to a queue set. Therefore counting semaphores that have a high
16691669 * maximum count value should not be added to a queue set.
16701670 *
@@ -1716,7 +1716,7 @@ BaseType_t xQueueGiveMutexRecursive( QueueHandle_t xMutex ) PRIVILEGED_FUNCTION;
17161716 * Note 2: Blocking on a queue set that contains a mutex will not cause the
17171717 * mutex holder to inherit the priority of the blocked task.
17181718 *
1719- * Note 3: An additional 4 bytes of RAM is required for each space in a every
1719+ * Note 3: An additional 4 bytes of RAM is required for each space in every
17201720 * queue added to a queue set. Therefore counting semaphores that have a high
17211721 * maximum count value should not be added to a queue set.
17221722 *
@@ -1767,7 +1767,7 @@ BaseType_t xQueueGiveMutexRecursive( QueueHandle_t xMutex ) PRIVILEGED_FUNCTION;
17671767 * a call to xQueueSelectFromSet() has first returned a handle to that set member.
17681768 *
17691769 * @param xQueueOrSemaphore The handle of the queue or semaphore being added to
1770- * the queue set (cast to an QueueSetMemberHandle_t type).
1770+ * the queue set (cast to a QueueSetMemberHandle_t type).
17711771 *
17721772 * @param xQueueSet The handle of the queue set to which the queue or semaphore
17731773 * is being added.
@@ -1790,7 +1790,7 @@ BaseType_t xQueueGiveMutexRecursive( QueueHandle_t xMutex ) PRIVILEGED_FUNCTION;
17901790 * function.
17911791 *
17921792 * @param xQueueOrSemaphore The handle of the queue or semaphore being removed
1793- * from the queue set (cast to an QueueSetMemberHandle_t type).
1793+ * from the queue set (cast to a QueueSetMemberHandle_t type).
17941794 *
17951795 * @param xQueueSet The handle of the queue set in which the queue or semaphore
17961796 * is included.
@@ -1836,7 +1836,7 @@ BaseType_t xQueueGiveMutexRecursive( QueueHandle_t xMutex ) PRIVILEGED_FUNCTION;
18361836 * a QueueSetMemberHandle_t type) contained in the queue set that contains data,
18371837 * or the handle of a semaphore (cast to a QueueSetMemberHandle_t type) contained
18381838 * in the queue set that is available, or NULL if no such queue or semaphore
1839- * exists before before the specified block time expires.
1839+ * exists before the specified block time expires.
18401840 */
18411841#if ( configUSE_QUEUE_SETS == 1 )
18421842 QueueSetMemberHandle_t xQueueSelectFromSet ( QueueSetHandle_t xQueueSet ,
0 commit comments