aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/lex
diff options
context:
space:
mode:
authorPeter Hawkins <thepish@FreeBSD.org>1998-06-11 02:14:58 +0000
committerPeter Hawkins <thepish@FreeBSD.org>1998-06-11 02:14:58 +0000
commita1fca66a0be90c2d98dead1180a2e82588e60668 (patch)
tree566164e5619820e380ed19660a68c564883210d9 /usr.bin/lex
parent8eb25828ad86a9625c67e1d65849a7bfc28d853e (diff)
downloadsrc-a1fca66a0be90c2d98dead1180a2e82588e60668.tar.gz
src-a1fca66a0be90c2d98dead1180a2e82588e60668.zip
Submitted by: Peter Hawkins thepish@freebsd.org
Small man page fix (missing ']' in [:alpha:] example)
Notes
Notes: svn path=/head/; revision=36878
Diffstat (limited to 'usr.bin/lex')
-rw-r--r--usr.bin/lex/lex.12
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/lex/lex.1 b/usr.bin/lex/lex.1
index 697c48251295..e135a49d7ecf 100644
--- a/usr.bin/lex/lex.1
+++ b/usr.bin/lex/lex.1
@@ -492,7 +492,7 @@ For example, the following character classes are all equivalent:
.nf
[[:alnum:]]
- [[:alpha:][:digit:]
+ [[:alpha:][:digit:]]
[[:alpha:]0-9]
[a-zA-Z0-9]