diff --git a/README.md b/README.md index 3466dd9..968340f 100644 --- a/README.md +++ b/README.md @@ -72,7 +72,7 @@ func call8() { ## Tips -You can break ctx inheritance by this way, eg: [issue](https://github.com/sylvia7788/contextcheck/issues/2). +You can break ctx inheritance by this way, eg: [issue](https://github.com/kkHAIKE/contextcheck/issues/2). ```go func call1(ctx context.Context) { @@ -116,7 +116,7 @@ func call3() { You can get `contextcheck` by `go get` command. ```bash -$ go get -u github.com/sylvia7788/contextcheck +$ go get -u github.com/kkHAIKE/contextcheck ``` or build yourself. diff --git a/cmd/contextcheck/main.go b/cmd/contextcheck/main.go index f96ef0c..178cac7 100644 --- a/cmd/contextcheck/main.go +++ b/cmd/contextcheck/main.go @@ -1,7 +1,7 @@ package main import ( - "github.com/sylvia7788/contextcheck" + "github.com/kkHAIKE/contextcheck" "golang.org/x/tools/go/analysis/singlechecker" ) diff --git a/contextcheck_test.go b/contextcheck_test.go index 578d24e..01f867b 100644 --- a/contextcheck_test.go +++ b/contextcheck_test.go @@ -4,7 +4,7 @@ import ( "log" "testing" - "github.com/sylvia7788/contextcheck" + "github.com/kkHAIKE/contextcheck" "golang.org/x/tools/go/analysis/analysistest" "golang.org/x/tools/go/packages" ) diff --git a/go.mod b/go.mod index 7e45143..a89a0ad 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/sylvia7788/contextcheck +module github.com/kkHAIKE/contextcheck go 1.15