fix the lexers package name

This commit is contained in:
Brian Picciano 2014-10-18 17:09:06 -04:00
parent 377ea8edbb
commit 7d23782048
2 changed files with 5 additions and 5 deletions

View File

@ -1,7 +1,7 @@
// The lexer package implements a lexical reader which can take in any
// io.Reader. It does not care about the meaning or logical validity of the
// tokens it parses out, it simply does its job.
package lexer
// The lex package implements a lexical reader which can take in any io.Reader.
// It does not care about the meaning or logical validity of the tokens it
// parses out, it simply does its job.
package lex
import (
"bufio"

View File

@ -1,4 +1,4 @@
package lexer
package lex
import (
"bytes"