浏览代码

Merge pull request #5838 from timthelion/patch-1

Typo in execdrivers.go five => give
Victor Vieux 11 年之前
父节点
当前提交
021ac36a70
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      daemon/execdriver/execdrivers/execdrivers.go

+ 1 - 1
daemon/execdriver/execdrivers/execdrivers.go

@@ -12,7 +12,7 @@ import (
 func NewDriver(name, root, initPath string, sysInfo *sysinfo.SysInfo) (execdriver.Driver, error) {
 func NewDriver(name, root, initPath string, sysInfo *sysinfo.SysInfo) (execdriver.Driver, error) {
 	switch name {
 	switch name {
 	case "lxc":
 	case "lxc":
-		// we want to five the lxc driver the full docker root because it needs
+		// we want to give the lxc driver the full docker root because it needs
 		// to access and write config and template files in /var/lib/docker/containers/*
 		// to access and write config and template files in /var/lib/docker/containers/*
 		// to be backwards compatible
 		// to be backwards compatible
 		return lxc.NewDriver(root, sysInfo.AppArmor)
 		return lxc.NewDriver(root, sysInfo.AppArmor)