Skip to content

Commit

Permalink
kind: always use receiver pointer
Browse files Browse the repository at this point in the history
  • Loading branch information
santhosh-tekuri committed May 3, 2024
1 parent 625abe4 commit 8caf7ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kind/kind.go
Original file line number Diff line number Diff line change
Expand Up @@ -516,11 +516,11 @@ func (k *ContentMediaType) String() string {

type ContentSchema struct{}

func (ContentSchema) KeywordPath() []string {
func (*ContentSchema) KeywordPath() []string {
return []string{"contentSchema"}
}

func (ContentSchema) String() string {
func (*ContentSchema) String() string {
return "contentSchema failed"
}

Expand Down

0 comments on commit 8caf7ab

Please sign in to comment.