From 91650e19ec8a5e927f36ca964198957d3d783fef Mon Sep 17 00:00:00 2001 From: Martine Lenders Date: Tue, 19 May 2015 10:06:33 +0200 Subject: [PATCH] ng_ndp: fix documentation --- sys/include/net/ng_ndp.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sys/include/net/ng_ndp.h b/sys/include/net/ng_ndp.h index d92339f90c..aeeee5d04a 100644 --- a/sys/include/net/ng_ndp.h +++ b/sys/include/net/ng_ndp.h @@ -106,26 +106,26 @@ extern "C" { */ /** - * @brief Handles received neighbor solicitations + * @brief Handles received neighbor solicitations. * * @param[in] iface The receiving interface. * @param[in] pkt The received packet. * @param[in] ipv6 The IPv6 header in @p pkt. * @param[in] nbr_sol The neighbor solicitation in @p pkt. - * @param[in] icmpv6_size The overall size of the neighbor solicitation + * @param[in] icmpv6_size The overall size of the neighbor solicitation. */ void ng_ndp_nbr_sol_handle(kernel_pid_t iface, ng_pktsnip_t *pkt, ng_ipv6_hdr_t *ipv6, ng_ndp_nbr_sol_t *nbr_sol, size_t icmpv6_size); /** - * @brief Handles received neighbor solicitations + * @brief Handles received neighbor advertisements. * * @param[in] iface The receiving interface. * @param[in] pkt The received packet. * @param[in] ipv6 The IPv6 header in @p pkt. * @param[in] nbr_adv The neighbor advertisement in @p pkt. - * @param[in] icmpv6_size The overall size of the neighbor solicitation + * @param[in] icmpv6_size The overall size of the neighbor advertisement. */ void ng_ndp_nbr_adv_handle(kernel_pid_t iface, ng_pktsnip_t *pkt, ng_ipv6_hdr_t *ipv6, ng_ndp_nbr_adv_t *nbr_adv,