Skip to content

Commit

Permalink
Merge pull request #88 from chanijjani/typo_fix
Browse files Browse the repository at this point in the history
coap_io_lwip.c: fix typos in comments
  • Loading branch information
obgm authored Jun 1, 2017
2 parents bfca87c + 69197fe commit cc49fbd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/coap_io_lwip.c
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*
Expand All @@ -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);
Expand Down

0 comments on commit cc49fbd

Please sign in to comment.