diff options
author | Alexander Neonxp Kiryukhin <i@neonxp.ru> | 2024-12-11 01:52:47 +0300 |
---|---|---|
committer | Alexander Neonxp Kiryukhin <i@neonxp.ru> | 2024-12-11 01:52:47 +0300 |
commit | a27b9d37c6d238432fedad019b0577d941a699da (patch) | |
tree | 6894c2f29682a8208d9e2b6128f4fa73a5623dc3 /example/json | |
parent | f819828f6debae4f68ec0d6060e08def1675ba5e (diff) |
Diffstat (limited to 'example/json')
-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() } |