Skip to content

Commit

Permalink
Merge pull request #3 from cert-manager/fix/import-name
Browse files Browse the repository at this point in the history
fix: update import name to cert-manager
  • Loading branch information
ThatsMrTalbot authored Jan 9, 2024
2 parents d303a06 + d12260b commit 5844b9a
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
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/thatsmrtalbot/helm-docgen
module github.com/cert-manager/helm-docgen

go 1.21.5

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

"github.com/cert-manager/helm-docgen/markdown"
"github.com/cert-manager/helm-docgen/parser"
"github.com/spf13/cobra"
"github.com/thatsmrtalbot/helm-docgen/markdown"
"github.com/thatsmrtalbot/helm-docgen/parser"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion markdown/inject.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"os"
"regexp"

"github.com/thatsmrtalbot/helm-docgen/parser"
"github.com/cert-manager/helm-docgen/parser"
)

var headerSearch = regexp.MustCompile(`(?m)^##\s+Parameters\s*$`)
Expand Down
4 changes: 2 additions & 2 deletions markdown/render.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"fmt"
"strings"

"github.com/thatsmrtalbot/helm-docgen/heuristics"
"github.com/thatsmrtalbot/helm-docgen/parser"
"github.com/cert-manager/helm-docgen/heuristics"
"github.com/cert-manager/helm-docgen/parser"
)

func RenderDocument(document *parser.Document) string {
Expand Down
2 changes: 1 addition & 1 deletion parser/comment.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package parser

import "github.com/thatsmrtalbot/helm-docgen/heuristics"
import "github.com/cert-manager/helm-docgen/heuristics"

type Comment struct {
heuristics.CommentBlock
Expand Down
2 changes: 1 addition & 1 deletion parser/document.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"os"
"strings"

"github.com/thatsmrtalbot/helm-docgen/heuristics"
"github.com/cert-manager/helm-docgen/heuristics"
"gopkg.in/yaml.v3"
)

Expand Down

0 comments on commit 5844b9a

Please sign in to comment.