diff options
Diffstat (limited to 'example/json/main.go')
-rw-r--r-- | example/json/main.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/example/json/main.go b/example/json/main.go index c600cda..44230e6 100644 --- a/example/json/main.go +++ b/example/json/main.go @@ -6,7 +6,7 @@ package main import ( "fmt" - "go.neonxp.ru/unilex" + "neonxp.ru/go/unilex" ) func main() { @@ -133,6 +133,6 @@ func stateInArray(l *unilex.Lexer) unilex.StateFunc { } func ignoreWhiteSpace(l *unilex.Lexer) { - l.AcceptWhile(" \n\t") //ignore whitespaces + l.AcceptWhile(" \n\t") // ignore whitespaces l.Ignore() } |