Refactoring

This commit is contained in:
Julien Dessaux 2021-09-20 01:22:18 +02:00
parent fc132c3dea
commit ae7f4d5acf
4 changed files with 10 additions and 10 deletions

View file

@ -28,7 +28,7 @@ type Line struct {
columns []int
}
func LoadFile(fd io.Reader) (*Field, error) {
func Load(fd io.Reader) (*Field, error) {
f := new(Field)
l := new(Line)
trailingSpaces := 0