summaryrefslogtreecommitdiff
path: root/json
diff options
context:
space:
mode:
Diffstat (limited to 'json')
-rw-r--r--json/nav.go2
-rw-r--r--json/node.go4
-rw-r--r--json/parse.go2
3 files changed, 4 insertions, 4 deletions
diff --git a/json/nav.go b/json/nav.go
index a870573..45bad7f 100644
--- a/json/nav.go
+++ b/json/nav.go
@@ -1,7 +1,7 @@
package json
import (
- base "src.userspace.com.au/query"
+ base "src.userspace.com.au/felix/query"
)
// NodeNavigator implements the Nav interface for navigating JSON nodes.
diff --git a/json/node.go b/json/node.go
index 4d58ee7..63e5a82 100644
--- a/json/node.go
+++ b/json/node.go
@@ -3,9 +3,9 @@ package json
import (
"bytes"
"fmt"
- "io"
+ //"io"
- base "src.userspace.com.au/query"
+ base "src.userspace.com.au/felix/query"
)
// A Node consists of a NodeType and some data (tag name for
diff --git a/json/parse.go b/json/parse.go
index db6ffe1..a1a2f28 100644
--- a/json/parse.go
+++ b/json/parse.go
@@ -6,7 +6,7 @@ import (
"sort"
"strconv"
- base "src.userspace.com.au/query"
+ base "src.userspace.com.au/felix/query"
)
// Parse JSON document.