From 41931dbe8ffe5d5fe09ef957343da5dae61c4f2b Mon Sep 17 00:00:00 2001 From: Federico Padua Date: Thu, 15 Dec 2016 00:52:52 +0100 Subject: [PATCH] Fix small typo in oci/io.go This commit fixes a typo in execution/executors/oci/io.go: "the" -> "to" Signed-off-by: Federico Padua --- execution/executors/oci/io.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/execution/executors/oci/io.go b/execution/executors/oci/io.go index 2163f1c..03b70de 100644 --- a/execution/executors/oci/io.go +++ b/execution/executors/oci/io.go @@ -9,7 +9,7 @@ import ( type OIO struct { master *os.File // master holds a fd to the created pty if any - console string // console holds the path the the slave linked to master + console string // console holds the path to the slave linked to master rio runc.IO // rio holds the open fifos for stdios }