1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

ng_ipv6/addr: minor doc fix

This commit is contained in:
Cenk Gündoğan 2015-05-09 09:09:00 +02:00
parent 2682c38ee8
commit 58e52b5896

View File

@ -324,12 +324,12 @@ static inline bool ng_ipv6_addr_is_solicited_node(const ng_ipv6_addr_t *addr)
* @param[in] a An IPv6 address.
* @param[in] b Another IPv6 address.
*
* @return The number of bits @p a and @p b match in there prefix
* @return The number of bits @p a and @p b match in their prefix
*/
uint8_t ng_ipv6_addr_match_prefix(const ng_ipv6_addr_t *a, const ng_ipv6_addr_t *b);
/**
* @brief Sets IPv6 address @p out with the first @p bits bit taken
* @brief Sets IPv6 address @p out with the first @p bits taken
* from @p prefix and leaves the remaining bits untouched.
*
* @param[out] out Prefix to be set.
@ -423,7 +423,6 @@ static inline void ng_ipv6_addr_set_aiid(ng_ipv6_addr_t *addr, uint8_t *iid)
addr->u8[15] = iid[7];
}
/**
* @brief Sets the bits for an address required to be a multicast address.
*