/**
* Add data to the head of the link list.
- * @param[in/out] list pointer of link list.
+ * @param[in,out] list pointer of link list.
* @param[in] data pointer of data.
* @return ::CA_STATUS_OK if Success, ::CA_MEMORY_ALLOC_FAILED if memory allocation fails.
*/
/**
* Add data to the tail of the link list.
- * @param[in/out] list pointer of link list.
+ * @param[in,out] list pointer of link list.
* @param[in] data pointer of data.
* @return ::CA_STATUS_OK if Success, ::CA_MEMORY_ALLOC_FAILED if memory allocation fails.
*/
/**
* This api deletes node pointed by iterator.
* Advances iterator to next node in the list.
- * @param[in/out] list pointer of link list.
- * @param[in/out] iter pointer of iterator pointing to previous node.
+ * @param[in,out] list pointer of link list.
+ * @param[in,out] iter pointer of iterator pointing to previous node.
* @return ::CA_STATUS_OK if Success, ::CA_STATUS_INVALID_PARAM if iterator is NULL.
*/
CAResult_t u_linklist_remove(u_linklist_t *list, u_linklist_iterator_t **iter);