aboutsummaryrefslogtreecommitdiff
path: root/example/json/main.go
diff options
context:
space:
mode:
authorAlexander Neonxp Kiryukhin <i@neonxp.ru>2024-12-11 01:52:47 +0300
committerAlexander Neonxp Kiryukhin <i@neonxp.ru>2024-12-11 01:52:47 +0300
commita27b9d37c6d238432fedad019b0577d941a699da (patch)
tree6894c2f29682a8208d9e2b6128f4fa73a5623dc3 /example/json/main.go
parentf819828f6debae4f68ec0d6060e08def1675ba5e (diff)
Поправил имя пакетаHEADv0.0.6master
Diffstat (limited to 'example/json/main.go')
-rw-r--r--example/json/main.go4
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()
}