Skip to content

Commit

Permalink
replace "smell-hunter" with "lang"
Browse files Browse the repository at this point in the history
  • Loading branch information
danilopedraza committed Feb 10, 2024
1 parent dd0474c commit 28f5f0d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module smell-hunter
module lang

go 1.21.4

Expand Down
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package main
import (
"github.com/antlr4-go/antlr/v4"
"os"
"smell-hunter/own"
"smell-hunter/parsing"
"lang/own"
"lang/parsing"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion own/Listener.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package own
import (
"fmt"
"github.com/antlr4-go/antlr/v4"
"smell-hunter/parsing"
"lang/parsing"
)

type Listener struct {
Expand Down
2 changes: 1 addition & 1 deletion own/Visitor.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package own
import (
"fmt"
"github.com/antlr4-go/antlr/v4"
"smell-hunter/parsing"
"lang/parsing"
)

type Visitor struct {
Expand Down

0 comments on commit 28f5f0d

Please sign in to comment.