diff options
author | thepish <thepish@FreeBSD.org> | 1998-06-11 02:14:58 +0000 |
---|---|---|
committer | thepish <thepish@FreeBSD.org> | 1998-06-11 02:14:58 +0000 |
commit | e154f69df4e1dfde6853749ae679fe8e3598baab (patch) | |
tree | 1d83fc13e50035e313a65aa91f1fb37ada95f60a /usr.bin/lex | |
parent | e55019792fa382e1b255e9d7419dada0e1ae68a1 (diff) | |
download | FreeBSD-src-e154f69df4e1dfde6853749ae679fe8e3598baab.zip FreeBSD-src-e154f69df4e1dfde6853749ae679fe8e3598baab.tar.gz |
Submitted by: Peter Hawkins thepish@freebsd.org
Small man page fix (missing ']' in [:alpha:] example)
Diffstat (limited to 'usr.bin/lex')
-rw-r--r-- | usr.bin/lex/lex.1 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/lex/lex.1 b/usr.bin/lex/lex.1 index 697c482..e135a49 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] |