From c67fbd65cfb8c78a8f4055aaa2430f9b79af9e7c Mon Sep 17 00:00:00 2001 From: Joshua DeWeese Date: Fri, 11 Aug 2023 08:11:07 -0400 Subject: [PATCH] sys/net/ipv4/addr: fix typos This patch fixes some typos in the doxygen doc. --- sys/include/net/ipv4/addr.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/include/net/ipv4/addr.h b/sys/include/net/ipv4/addr.h index 73a0662d4e..ddb4000f06 100644 --- a/sys/include/net/ipv4/addr.h +++ b/sys/include/net/ipv4/addr.h @@ -13,7 +13,7 @@ * @{ * * @file - * @brief IPv6 address type and helper functions definitions + * @brief IPv4 address type and helper functions definitions * * @author Martine Lenders */ @@ -121,7 +121,7 @@ ipv4_addr_t *ipv4_addr_from_buf(ipv4_addr_t *result, const char *addr, /** * @brief Print IPv4 address to stdout * - * @param[in] addr Pointer to ipv6_addr_t to print + * @param[in] addr Pointer to ipv4_addr_t to print */ void ipv4_addr_print(const ipv4_addr_t *addr);