summaryrefslogtreecommitdiffhomepage
path: root/src/buffer.c
diff options
context:
space:
mode:
authorRobert James Kaes <rjkaes@users.sourceforge.net>2002-05-24 04:45:32 +0000
committerRobert James Kaes <rjkaes@users.sourceforge.net>2002-05-24 04:45:32 +0000
commit391a408eee5351b4c4714f9edfe358d924ea80bc (patch)
tree9b469da70856e1c1294f94a3feacd5909b060665 /src/buffer.c
parenta34db10d653b296ee9ed3a2c742baf600978cae8 (diff)
Fixed a tonne of spelling mistakes.
Diffstat (limited to 'src/buffer.c')
-rw-r--r--src/buffer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/buffer.c b/src/buffer.c
index 16bd60a..1d48e0c 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -1,8 +1,8 @@
-/* $Id: buffer.c,v 1.21 2002-05-23 18:22:48 rjkaes Exp $
+/* $Id: buffer.c,v 1.22 2002-05-24 04:45:32 rjkaes Exp $
*
* The buffer used in each connection is a linked list of lines. As the lines
* are read in and written out the buffer expands and contracts. Basically,
- * by using this method we can increase the buffer size dynamicly. However,
+ * by using this method we can increase the buffer size dynamically. However,
* we have a hard limit of 64 KB for the size of the buffer. The buffer can be
* thought of as a queue were we act on both the head and tail. The various
* functions act on each end (the names are taken from what Perl uses to act on