Skip to content

Commit

Permalink
fix readme
Browse files Browse the repository at this point in the history
  • Loading branch information
awalterschulze committed Oct 22, 2024
1 parent 2c081a7 commit 6943fff
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ Create a new file `./gen-validator-tests/my_tests.go` with the following content
package main

import (
"github.com/katydid/katydid/validator-go/ast"
. "github.com/katydid/katydid/validator-go/combinator"
"github.com/katydid/validator-go/validator/ast"
. "github.com/katydid/validator-go/validator/combinator"
)

func init() {
Expand Down Expand Up @@ -115,8 +115,8 @@ Create a new file `./gen-validator-tests/my_tests.go` with the following content
package main

import (
"github.com/katydid/katydid/validator/ast"
"github.com/katydid/katydid/validator/parser"
"github.com/katydid/validator-go/validator/ast"
"github.com/katydid/validator-go/validator/parser"
)

func init() {
Expand Down Expand Up @@ -179,10 +179,10 @@ Finally we can create our test file `./gen-validator-tests/my_tests.go` with the
package main

import (
"github.com/katydid/katydid/validator/ast"
"github.com/katydid/katydid/validator/parser"
. "github.com/katydid/katydid/validator/combinator"
. "github.com/katydid/katydid/validator/funcs"
"github.com/katydid/validator-go/validator/ast"
"github.com/katydid/validator-go/validator/parser"
. "github.com/katydid/validator-go/validator/combinator"
. "github.com/katydid/validator-go/validator/funcs"
)

func init() {
Expand Down

0 comments on commit 6943fff

Please sign in to comment.