doc: fix typo

Signed-off-by: Yan Zhu <yanzhu@alauda.io>
This commit is contained in:
Yan Zhu
2018-09-07 11:37:40 +08:00
parent 70ca035aa6
commit feb90346e0
14 changed files with 16 additions and 16 deletions
+1 -1
View File
@@ -537,7 +537,7 @@ func (p *Process) InitializeIO(rootuid, rootgid int) (i *IO, err error) {
}
fds = append(fds, r.Fd(), w.Fd())
p.Stderr, i.Stderr = w, r
// change ownership of the pipes incase we are in a user namespace
// change ownership of the pipes in case we are in a user namespace
for _, fd := range fds {
if err := unix.Fchown(int(fd), rootuid, rootgid); err != nil {
return nil, err