From: Niels Provos Date: Sun, 19 Aug 2007 17:26:02 +0000 (+0000) Subject: fix typo in comments X-Git-Tag: release-2.0.1-alpha~593 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=41c69fc335e116de8b9a6889798a7dd5bc295fd3;p=libevent fix typo in comments svn:r399 --- diff --git a/buffer.c b/buffer.c index 0a57dda3..0327eb54 100644 --- a/buffer.c +++ b/buffer.c @@ -107,7 +107,7 @@ evbuffer_add_buffer(struct evbuffer *outbuf, struct evbuffer *inbuf) /* * Optimization comes with a price; we need to notify the * buffer if necessary of the changes. oldoff is the amount - * of data that we tranfered from inbuf to outbuf + * of data that we transfered from inbuf to outbuf */ if (inbuf->off != oldoff && inbuf->cb != NULL) (*inbuf->cb)(inbuf, oldoff, inbuf->off, inbuf->cbarg);