chore: rename display.Display

Rename `display.Display` to `display.Write` for clarity and to reduce
"stutter".
This commit is contained in:
Chris Lane
2020-11-27 22:35:24 -05:00
parent 4ef4c35d8c
commit cdddfbb516
6 changed files with 8 additions and 8 deletions

View File

@ -27,5 +27,5 @@ func cmdDirectories(opts map[string]interface{}, conf config.Config) {
// write columnized output to stdout
w.Flush()
display.Display(out.String(), conf)
display.Write(out.String(), conf)
}