Skip to content

Commit

Permalink
fix: added missing spaces (#2386)
Browse files Browse the repository at this point in the history
  • Loading branch information
Absobel authored Sep 19, 2024
1 parent 13df7e7 commit bea53a4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkg/dep/topo/errors.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package topo
import "errors"

var (
ErrSelfReferential = errors.New("self-referential dependencies not allowed")
ErrConflictingAlias = errors.New("alias already defined")
ErrCircular = errors.New("circular dependencies not allowed")
ErrSelfReferential = errors.New(" self-referential dependencies not allowed")
ErrConflictingAlias = errors.New(" alias already defined")
ErrCircular = errors.New(" circular dependencies not allowed")
)

0 comments on commit bea53a4

Please sign in to comment.