http: error strings should not be capitalized

This commit is contained in:
albertony 2022-01-23 22:54:08 +01:00
parent d8a874c32b
commit 162aba60eb

View File

@ -409,7 +409,7 @@ func (f *Fs) readDir(ctx context.Context, dir string) (names []string, err error
return nil, fmt.Errorf("readDir: %w", err)
}
default:
return nil, fmt.Errorf("Can't parse content type %q", contentType)
return nil, fmt.Errorf("can't parse content type %q", contentType)
}
return names, nil
}