]> granicus.if.org Git - libevent/commitdiff
Typo fixes from Linus Nordberg
authorNick Mathewson <nickm@torproject.org>
Fri, 20 Dec 2013 18:31:29 +0000 (13:31 -0500)
committerNick Mathewson <nickm@torproject.org>
Fri, 20 Dec 2013 18:31:29 +0000 (13:31 -0500)
include/event2/bufferevent.h
include/event2/event.h

index 7ce4e8f88ad569d8ebc7193d477d7d178c066f2d..0cc6cb1c89f24310eb2d4b6b52f6c3358a32f173 100644 (file)
   with bufferevent_enable() and bufferevent_disable().
 
   When reading is enabled, the bufferevent will try to read from the
-  file descriptor onto its input buffer, and and call the read callback.
+  file descriptor onto its input buffer, and call the read callback.
   When writing is enabled, the bufferevent will try to write data onto its
-  file descriptor when writing is enabled, and call the write callback
-  when the output buffer is sufficiently drained.
+  file descriptor when the output buffer has enough data, and call the write
+  callback when the output buffer is sufficiently drained.
 
   Bufferevents come in several flavors, including:
 
index 700e8ca1261f8838d7c410f9cafed58e1946edb3..1da95560349ae180c779057bb12bcf6c3e35bc4d 100644 (file)
@@ -646,7 +646,7 @@ int event_base_set(struct event_base *, struct event *);
 
   By default, this loop will run the event base until either there are no more
   added events, or until something calls event_base_loopbreak() or
-  evenet_base_loopexit().  You can override this behavior with the 'flags'
+  event_base_loopexit().  You can override this behavior with the 'flags'
   argument.
 
   @param eb the event_base structure returned by event_base_new() or