Avoid unnecessary conversions

No need to convert these types.
This commit is contained in:
Christian Muehlhaeuser
2019-08-02 15:32:23 +00:00
committed by Bjørn Erik Pedersen
parent c577a9ed23
commit 6027ee1108
3 changed files with 3 additions and 3 deletions

View File

@@ -188,7 +188,7 @@ type permalinkExpandError struct {
}
func (pee *permalinkExpandError) Error() string {
return fmt.Sprintf("error expanding %q: %s", string(pee.pattern), pee.err)
return fmt.Sprintf("error expanding %q: %s", pee.pattern, pee.err)
}
var (