2
0
forked from drew/smtprelay

gofmt: Fix formatting

This commit is contained in:
Bernhard Froehlich
2021-02-16 15:57:50 +00:00
parent 97943c87e7
commit 7f34fcbc99
3 changed files with 40 additions and 40 deletions

View File

@@ -8,7 +8,7 @@ func stringsEqual(a, b []string) bool {
if len(a) != len(b) {
return false
}
for i, _ := range a {
for i := range a {
if a[i] != b[i] {
return false
}