summaryrefslogtreecommitdiff
path: root/usr.bin/yacc
diff options
context:
space:
mode:
authorTodd T. Fries <todd@cvs.openbsd.org>2002-06-14 21:35:02 +0000
committerTodd T. Fries <todd@cvs.openbsd.org>2002-06-14 21:35:02 +0000
commit592b4684a393f187ed17f2dbde89e7e974b93bec (patch)
tree27021a1a3a7da6ee5ba8051ad9cddf8203ff8263 /usr.bin/yacc
parent44ce7129fce40e129e05c87cdc90ad808c587ea4 (diff)
spelling; from Brian Poole <raj@cerias.purdue.edu>
Diffstat (limited to 'usr.bin/yacc')
-rw-r--r--usr.bin/yacc/reader.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/yacc/reader.c b/usr.bin/yacc/reader.c
index a6f951f70bb..4cc0a181dca 100644
--- a/usr.bin/yacc/reader.c
+++ b/usr.bin/yacc/reader.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: reader.c,v 1.10 2002/02/16 21:28:00 millert Exp $ */
+/* $OpenBSD: reader.c,v 1.11 2002/06/14 21:35:00 todd Exp $ */
/* $NetBSD: reader.c,v 1.5 1996/03/19 03:21:43 jtc Exp $ */
@@ -51,7 +51,7 @@ static char rcsid[] = "$NetBSD: reader.c,v 1.5 1996/03/19 03:21:43 jtc Exp $";
/* The line size must be a positive integer. One hundred was chosen */
/* because few lines in Yacc input grammars exceed 100 characters. */
/* Note that if a line exceeds LINESIZE characters, the line buffer */
-/* will be expanded to accomodate it. */
+/* will be expanded to accommodate it. */
#define LINESIZE 100