From 3a16d021a683b7af7ee2f3e3042c522fb2103fde Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cenk=20G=C3=BCndo=C4=9Fan?= Date: Thu, 4 Feb 2016 08:15:56 +0100 Subject: [PATCH] conn: udp: doc fix --- sys/include/net/conn/udp.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sys/include/net/conn/udp.h b/sys/include/net/conn/udp.h index 68b40323fa..c94969a38d 100644 --- a/sys/include/net/conn/udp.h +++ b/sys/include/net/conn/udp.h @@ -105,9 +105,9 @@ int conn_udp_recvfrom(conn_udp_t *conn, void *data, size_t max_len, void *addr, /** * @brief Sends a UDP message * - * @param[in] data Pointer where the received data should be stored. - * @param[in] len Maximum space available at @p data. - * @param[in] src The source address. May be NULL for all any interface address. + * @param[in] data Pointer to the data to send. + * @param[in] len Length of the @p data to send. + * @param[in] src The source address. May be NULL for any interface address. * @param[in] src_len Length of @p src. May be 0 if @p src is NULL * @param[in] dst The receiver's network address. * @param[in] dst_len Length of @p dst. @@ -117,7 +117,7 @@ int conn_udp_recvfrom(conn_udp_t *conn, void *data, size_t max_len, void *addr, * * @note Function may block. * - * @return The number of bytes send on success. + * @return The number of bytes sent on success. * @return any other negative number in case of an error. For portability, implementations should * draw inspiration of the errno values from the POSIX' send(), sendfrom(), or sendmsg() * function specification.