Fix typo on doxygen documentation (found by -Wdocumentation with Clang)

FossilOrigin-Name: f3142196b57109077080b4af5052c7aafc1624e71c0c1c77ec3c467ca451e893
This commit is contained in:
alexis.lagoutte@gmail.com 2015-11-02 10:12:18 +00:00
parent 7aaae9f98a
commit 5f2dad3eab
2 changed files with 5 additions and 5 deletions

View File

@ -653,7 +653,7 @@ extern int cw_readmsg_configuration_update_request(uint8_t * elems, int elems_le
/** /**
* Set the HLEN field of a CAWAP Header * Set the HLEN field of a CAWAP Header
* @param th pointer to the header * @param th pointer to the header
* @param hlen velue to set (max. 5 bits) * @param hlen value to set (Header Length)
*/ */
static inline void cw_set_hdr_hlen(uint8_t * th, int hlen) static inline void cw_set_hdr_hlen(uint8_t * th, int hlen)
{ {
@ -666,7 +666,7 @@ static inline void cw_set_hdr_hlen(uint8_t * th, int hlen)
/** /**
* Set the WBID field of a CAWAP Header * Set the WBID field of a CAWAP Header
* @param th pointer to the header * @param th pointer to the header
* @param hlen velue to set (max. 5 bits) * @param wbid value to set (Wireless ID)
*/ */
static inline void cw_set_hdr_wbid(uint8_t * th, int wbid) static inline void cw_set_hdr_wbid(uint8_t * th, int wbid)
{ {
@ -679,7 +679,7 @@ static inline void cw_set_hdr_wbid(uint8_t * th, int wbid)
/** /**
* Set the RID field of a CAWAP Header * Set the RID field of a CAWAP Header
* @param th pointer to the header * @param th pointer to the header
* @param hlen velue to set (max. 5 bits) * @param rid value to set (Radio ID)
*/ */
static inline void cw_set_hdr_rid(uint8_t * th, int rid) static inline void cw_set_hdr_rid(uint8_t * th, int rid)
{ {
@ -825,7 +825,7 @@ static inline int cw_set_hdr_rmac(uint8_t * th,bstr_t rmac)
* Put a message element header for a message to contain a vendor specific payload * Put a message element header for a message to contain a vendor specific payload
* @param dst pointer to destination buffer * @param dst pointer to destination buffer
* @param vendorid vendorid * @param vendorid vendorid
* @param elementid element id of vendor specific data * @param elemid element id of vendor specific data
* @len length of vendor specific data * @len length of vendor specific data
* @return the number of bytes put (always 10) * @return the number of bytes put (always 10)
*/ */

View File

@ -33,7 +33,7 @@
/** /**
* Create a conn object * Create a conn object
* @param socket a socket * @param sock a socket
* @param addr the address associated * @param addr the address associated
* @param qsize size of packet queue * @param qsize size of packet queue
* @return A pointer to the created object * @return A pointer to the created object