From d8ba8860d3e586f162ecdcd168dc65530db27aae Mon Sep 17 00:00:00 2001 From: WhiteChairFromIkea <46539653+WhiteChairFromIkea@users.noreply.github.com> Date: Wed, 9 Feb 2022 13:12:19 +0200 Subject: [PATCH] fix some typos inside readme.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 764ff55..fb6750e 100644 --- a/README.md +++ b/README.md @@ -310,7 +310,7 @@ union telnet_event_t { ``` The enumeration values of telnet_event_type_t are described in - detail below. Whenever the the event handler is invoked, the + detail below. Whenever the event handler is invoked, the application must look at the event->type value and do any necessary processing. @@ -359,7 +359,7 @@ void my_event_handler(telnet_t *telnet, telnet_event_t *ev, * TELNET_EV_SEND This event is sent whenever libtelnet has generated data that must - be sent over the wire to the remove end. Generally that means + be sent over the wire to the remote end. Generally that means calling send() or adding the data to your application's output buffer.