containerd: rename FifoSet to FIFOSet

Per Go's style guidelines, `Fifo` should be `FIFO` since it is an
initialism.

Signed-off-by: Stephen J Day <stephen.day@docker.com>
This commit is contained in:
Stephen J Day
2017-06-30 14:16:56 -07:00
parent 3332042ab6
commit d738d6d1e4
4 changed files with 8 additions and 8 deletions

View File

@@ -11,7 +11,7 @@ import (
"github.com/containerd/fifo"
)
func copyIO(fifos *FifoSet, ioset *ioSet, tty bool) (closer io.Closer, err error) {
func copyIO(fifos *FIFOSet, ioset *ioSet, tty bool) (closer io.Closer, err error) {
var (
f io.ReadWriteCloser
ctx = context.Background()