Merge pull request #9 from alagoutte/wdoc_clang

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

FossilOrigin-Name: a8af7d43b8f4f69a2c7b22d59dbaad2eb41dea0a37b7f1b5e8be640ccb017d33
This commit is contained in:
7u83@mail.ru 2016-02-17 11:44:27 +00:00
commit 200ec5795b
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