From 0018cd7b0109fd5af7f403276023b2f155d3c5f7 Mon Sep 17 00:00:00 2001 From: Oleg Hahm Date: Thu, 16 Mar 2017 20:50:42 +0100 Subject: [PATCH] sock: tcp: fix c&p mistake --- sys/include/net/sock/tcp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/include/net/sock/tcp.h b/sys/include/net/sock/tcp.h index 29f3e32301..ebdc374fcc 100644 --- a/sys/include/net/sock/tcp.h +++ b/sys/include/net/sock/tcp.h @@ -18,7 +18,7 @@ * ---------- * First you need to @ref including-modules "include" a module that implements * this API in your application's Makefile. For example the implementation for - * @ref net_gnrc "GNRC" is called `gnrc_sock_udp`. + * @ref net_gnrc "GNRC" is called `gnrc_sock_tcp`. * * ### A Simple TCP Echo Server *