From 69197feb158bc4315d908d1fbb729fb3ae8ec4ef Mon Sep 17 00:00:00 2001 From: Chanhee Date: Thu, 1 Jun 2017 19:58:35 +0900 Subject: [PATCH] coap_io_lwip.c: fix typos in comments Few typos are fixed. --- src/coap_io_lwip.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/coap_io_lwip.c b/src/coap_io_lwip.c index 8ae3b57e02..eee0c4c79f 100644 --- a/src/coap_io_lwip.c +++ b/src/coap_io_lwip.c @@ -44,7 +44,7 @@ struct pbuf *coap_packet_extract_pbuf(coap_packet_t *packet) /** Callback from lwIP when a package was received. * - * The current implemntation deals this to coap_handle_message immedately, but + * The current implementation deals this to coap_handle_message immediately, but * other mechanisms (as storing the package in a queue and later fetching it * when coap_read is called) can be envisioned. * @@ -59,7 +59,7 @@ static void coap_recv(void *arg, struct udp_pcb *upcb, struct pbuf *p, const ip_ packet->pbuf = p; packet->srcport = port; - /** FIXME derive the context without changing endopint definition */ + /** FIXME derive the context without changing endpoint definition */ coap_handle_message(ep->context, packet); coap_free_packet(packet);