1
0
mirror of https://github.com/Jguer/yay synced 2024-07-03 08:51:44 +00:00
This commit is contained in:
Absobel 2024-06-20 14:36:33 +02:00 committed by GitHub
commit 7bd8f0ba82
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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