@@ -35,7 +35,7 @@ typedef struct __MessageQueue_struct {
35
35
* any other message queue having the same name in the system
36
36
* @param[in,out] pHandle handle to the message queue object
37
37
* @param[in] pstrAttrs Optional attributes, NULL for default
38
- * @return Error code indicating sucess /failure
38
+ * @return Error code indicating success /failure
39
39
* @author syounan
40
40
* @date 30 Aug 2010
41
41
* @version 1.0
@@ -44,15 +44,15 @@ int wilc_mq_create(WILC_MsgQueueHandle *pHandle);
44
44
45
45
/*!
46
46
* @brief Sends a message
47
- * @details Sends a message, this API will block unil the message is
47
+ * @details Sends a message, this API will block until the message is
48
48
* actually sent or until it is timedout (as long as the feature
49
49
* CONFIG_WILC_MSG_QUEUE_TIMEOUT is enabled and pstrAttrs->u32Timeout
50
50
* is not set to WILC_OS_INFINITY), zero timeout is a valid value
51
51
* @param[in] pHandle handle to the message queue object
52
52
* @param[in] pvSendBuffer pointer to the data to send
53
53
* @param[in] u32SendBufferSize the size of the data to send
54
54
* @param[in] pstrAttrs Optional attributes, NULL for default
55
- * @return Error code indicating sucess /failure
55
+ * @return Error code indicating success /failure
56
56
* @author syounan
57
57
* @date 30 Aug 2010
58
58
* @version 1.0
@@ -62,7 +62,7 @@ int wilc_mq_send(WILC_MsgQueueHandle *pHandle,
62
62
63
63
/*!
64
64
* @brief Receives a message
65
- * @details Receives a message, this API will block unil a message is
65
+ * @details Receives a message, this API will block until a message is
66
66
* received or until it is timedout (as long as the feature
67
67
* CONFIG_WILC_MSG_QUEUE_TIMEOUT is enabled and pstrAttrs->u32Timeout
68
68
* is not set to WILC_OS_INFINITY), zero timeout is a valid value
@@ -71,7 +71,7 @@ int wilc_mq_send(WILC_MsgQueueHandle *pHandle,
71
71
* @param[in] u32RecvBufferSize the size of the receive buffer
72
72
* @param[out] pu32ReceivedLength the length of received data
73
73
* @param[in] pstrAttrs Optional attributes, NULL for default
74
- * @return Error code indicating sucess /failure
74
+ * @return Error code indicating success /failure
75
75
* @author syounan
76
76
* @date 30 Aug 2010
77
77
* @version 1.0
@@ -84,7 +84,7 @@ int wilc_mq_recv(WILC_MsgQueueHandle *pHandle,
84
84
* @brief Destroys an existing Message queue
85
85
* @param[in] pHandle handle to the message queue object
86
86
* @param[in] pstrAttrs Optional attributes, NULL for default
87
- * @return Error code indicating sucess /failure
87
+ * @return Error code indicating success /failure
88
88
* @author syounan
89
89
* @date 30 Aug 2010
90
90
* @version 1.0
0 commit comments