Skip to content

Commit

Permalink
Minor doc and mod changes
Browse files Browse the repository at this point in the history
  • Loading branch information
themue committed Mar 31, 2023
1 parent c5e778b commit 58adb19
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
4 changes: 2 additions & 2 deletions doc.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@
// there's none at the path. Another way is to create an empty document
// with
//
// doc := gjp.NewDocument("/")
// doc := gjp.NewDocument("::")
//
// Here and at parsed documents values can be set with
//
// err := doc.SetValueAt("a/b/3/c", 4711)
// err := doc.SetValueAt("a::b::3::c", 4711)
//
// Additionally values of the document can be processed using
//
Expand Down
1 change: 1 addition & 0 deletions gjp_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ import (
"time"

"tideland.dev/go/audit/asserts"

"tideland.dev/go/gjp"
)

Expand Down
9 changes: 5 additions & 4 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
module tideland.dev/go/gjp

go 1.20
go 1.19

require tideland.dev/go/matcher v0.1.0

require tideland.dev/go/audit v0.7.0
require (
tideland.dev/go/audit v0.7.0
tideland.dev/go/matcher v0.1.0
)

0 comments on commit 58adb19

Please sign in to comment.