Explorar el Código

fix: added missing spaces (#2386)

Absobel hace 7 meses
padre
commit
bea53a4a09
Se han modificado 1 ficheros con 3 adiciones y 3 borrados
  1. 3 3
      pkg/dep/topo/errors.go

+ 3 - 3
pkg/dep/topo/errors.go

@@ -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")
 )