Skip to content

Commit

Permalink
Merge pull request #22 from 0xch4z/update-pkg-name
Browse files Browse the repository at this point in the history
fix package name s/Charliekenney23/0xch4z/
  • Loading branch information
0xch4z authored Mar 1, 2023
2 parents 87ff582 + d29281c commit d7b1d3e
Show file tree
Hide file tree
Showing 10 changed files with 17 additions and 17 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,6 @@ sel.Resolve(m) // => 2

- Import dynamic values from dynamic data files.

[test-badge]: https://github.com/Charliekenney23/selectr/workflows/test/badge.svg
[godoc-badge]: https://godoc.org/github.com/Charliekenney23/selectr?status.svg
[godoc]: https://godoc.org/github.com/Charliekenney23/selectr
[test-badge]: https://github.com/0xch4z/selectr/workflows/test/badge.svg
[godoc-badge]: https://godoc.org/github.com/0xch4z/selectr?status.svg
[godoc]: https://godoc.org/github.com/0xch4z/selectr
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/Charliekenney23/selectr
module github.com/0xch4z/selectr

go 1.14

Expand Down
2 changes: 1 addition & 1 deletion internal/parser/ast/node.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package ast

import "github.com/Charliekenney23/selectr/internal/parser/token"
import "github.com/0xch4z/selectr/internal/parser/token"

// Node represents an abstract syntax Node.
type Node struct {
Expand Down
2 changes: 1 addition & 1 deletion internal/parser/error.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package parser
import (
"fmt"

"github.com/Charliekenney23/selectr/internal/parser/token"
"github.com/0xch4z/selectr/internal/parser/token"
)

// Error represents a parser error.
Expand Down
4 changes: 2 additions & 2 deletions internal/parser/parser.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package parser
import (
"io"

"github.com/Charliekenney23/selectr/internal/parser/ast"
"github.com/Charliekenney23/selectr/internal/parser/token"
"github.com/0xch4z/selectr/internal/parser/ast"
"github.com/0xch4z/selectr/internal/parser/token"
)

// EOF signals the end of a file.
Expand Down
4 changes: 2 additions & 2 deletions internal/parser/parser_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"strings"
"testing"

"github.com/Charliekenney23/selectr/internal/parser/ast"
"github.com/Charliekenney23/selectr/internal/parser/token"
"github.com/0xch4z/selectr/internal/parser/ast"
"github.com/0xch4z/selectr/internal/parser/token"
"github.com/google/go-cmp/cmp"
)

Expand Down
4 changes: 2 additions & 2 deletions internal/parser/scanner.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"bytes"
"io"

"github.com/Charliekenney23/selectr/internal/parser/ast"
"github.com/Charliekenney23/selectr/internal/parser/token"
"github.com/0xch4z/selectr/internal/parser/ast"
"github.com/0xch4z/selectr/internal/parser/token"
)

// Scanner represents a lexical scanner.
Expand Down
4 changes: 2 additions & 2 deletions internal/parser/scanner_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"strings"
"testing"

"github.com/Charliekenney23/selectr/internal/parser/ast"
"github.com/Charliekenney23/selectr/internal/parser/token"
"github.com/0xch4z/selectr/internal/parser/ast"
"github.com/0xch4z/selectr/internal/parser/token"
"github.com/google/go-cmp/cmp"
)

Expand Down
4 changes: 2 additions & 2 deletions selectr.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"fmt"
"strings"

"github.com/Charliekenney23/selectr/internal/parser"
"github.com/Charliekenney23/selectr/internal/parser/ast"
"github.com/0xch4z/selectr/internal/parser"
"github.com/0xch4z/selectr/internal/parser/ast"
)

// ResolveError represents an error that occured while resolving a
Expand Down
2 changes: 1 addition & 1 deletion selectr_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"regexp"
"testing"

"github.com/Charliekenney23/selectr/internal/parser"
"github.com/0xch4z/selectr/internal/parser"
"github.com/google/go-cmp/cmp"
"github.com/google/go-cmp/cmp/cmpopts"
)
Expand Down

0 comments on commit d7b1d3e

Please sign in to comment.