diff options
author | Franck Cuny <franck@fcuny.net> | 2021-05-10 19:21:39 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2021-05-10 19:21:39 -0700 |
commit | 8437218bdaed90cab7374a752f8aaf128225aa1a (patch) | |
tree | 41d1f2bc8a0877df9e7fd16e12845b77417c5a6a /users/fcuny/exp/monkey/pkg/lexer | |
parent | git: ignore binary for the REPL (diff) | |
download | world-8437218bdaed90cab7374a752f8aaf128225aa1a.tar.gz |
lint: fix a few issues
Diffstat (limited to '')
-rw-r--r-- | users/fcuny/exp/monkey/pkg/lexer/lexer.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/users/fcuny/exp/monkey/pkg/lexer/lexer.go b/users/fcuny/exp/monkey/pkg/lexer/lexer.go index 06d526e..3e98cf0 100644 --- a/users/fcuny/exp/monkey/pkg/lexer/lexer.go +++ b/users/fcuny/exp/monkey/pkg/lexer/lexer.go @@ -1,3 +1,4 @@ +// Package lexer provides a lexer to the monkey language. package lexer import "monkey/pkg/token" |