Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
tstirrat15 committed Oct 30, 2024
1 parent 62e50a2 commit 6d5ec25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/tuple/v1.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ func ParseV1Rel(relString string) (*v1.Relationship, error) {
}

// Same as above, but panics if it cannot be parsed. Should only be used in tests.
func MustParseV1Rel(relString string) (*v1.Relationship) {
func MustParseV1Rel(relString string) *v1.Relationship {
parsed, err := Parse(relString)
if err != nil {
panic(fmt.Sprintf("could not parse relationship string: %s %s", relString, err))
Expand Down

0 comments on commit 6d5ec25

Please sign in to comment.