fix typos

This commit is contained in:
jguer 2022-09-17 14:45:07 +02:00
parent d646cd6c87
commit c86c460816
No known key found for this signature in database
GPG key ID: 6D6CC9BEA8556B35
2 changed files with 2 additions and 2 deletions

View file

@ -80,7 +80,7 @@ func provideSatisfies(provide, dep, pkgVersion string) bool {
return false
}
// Unversioned provieds can not satisfy a versioned dep
// Unversioned provides can not satisfy a versioned dep
if provideMod == "" && depMod != "" {
provideVersion = pkgVersion // Example package: pagure
}

View file

@ -146,7 +146,7 @@ func (g *Graph[T, V]) String() string {
if info, ok := g.nodeInfo[node]; ok {
if info.Background != "" || info.Color != "" {
extra = fmt.Sprintf("[color = %s ,style = filled, fillcolor = %s]", info.Color, info.Background)
extra = fmt.Sprintf("[color = %s, style = filled, fillcolor = %s]", info.Color, info.Background)
}
}