Skip to content

Commit 6a60bd1

Browse files
committed
chore: change username
1 parent 1a7fee5 commit 6a60bd1

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# gencon [![Go Reference](https://pkg.go.dev/badge/github.com/ari1021/gencon.svg)](https://pkg.go.dev/github.com/ari1021/gencon)
1+
# gencon [![Go Reference](https://pkg.go.dev/badge/github.com/arkuchy/gencon.svg)](https://pkg.go.dev/github.com/arkuchy/gencon)
22

33
`gencon` is an analyzer which reports unnecessary type constraints `any`.
44

@@ -33,13 +33,13 @@ func invoke() { // OK
3333

3434
If the function isn't called from anywhere, `gencon` reports without hint.
3535

36-
We can see example of `gencon` command report [here](https://github.com/ari1021/gencon/blob/main/testdata/src/a/a.go).
36+
We can see example of `gencon` command report [here](https://github.com/arkuchy/gencon/blob/main/testdata/src/a/a.go).
3737

3838

3939
### install
4040

4141
```sh
42-
$ go install github.com/ari1021/gencon/cmd/gencon@latest
42+
$ go install github.com/arkuchy/gencon/cmd/gencon@latest
4343
```
4444

4545
### usage
@@ -96,7 +96,7 @@ func invoke() { // OK
9696
### install
9797

9898
```sh
99-
$ go install github.com/ari1021/gencon/cmd/fixgencon@latest
99+
$ go install github.com/arkuchy/gencon/cmd/fixgencon@latest
100100
```
101101

102102
### usage

cmd/fixgencon/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package main
33
import (
44
"os"
55

6-
"github.com/ari1021/gencon"
6+
"github.com/arkuchy/gencon"
77
"golang.org/x/tools/go/analysis/singlechecker"
88
)
99

cmd/gencon/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package main
22

33
import (
4-
"github.com/ari1021/gencon"
4+
"github.com/arkuchy/gencon"
55
"golang.org/x/tools/go/analysis/unitchecker"
66
)
77

gencon_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package gencon_test
33
import (
44
"testing"
55

6-
"github.com/ari1021/gencon"
6+
"github.com/arkuchy/gencon"
77
"github.com/gostaticanalysis/testutil"
88
"golang.org/x/tools/go/analysis/analysistest"
99
)

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/ari1021/gencon
1+
module github.com/arkuchy/gencon
22

33
go 1.18
44

0 commit comments

Comments
 (0)