瀏覽代碼

Merge pull request #1305 from gaffo/fix-spelling

Change reserve-compatibility to reverse-compatibility
Victor Vieux 12 年之前
父節點
當前提交
faf103e6ec
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      container.go

+ 1 - 1
container.go

@@ -52,7 +52,7 @@ type Container struct {
 
 	waitLock chan struct{}
 	Volumes  map[string]string
-	// Store rw/ro in a separate structure to preserve reserve-compatibility on-disk.
+	// Store rw/ro in a separate structure to preserve reverse-compatibility on-disk.
 	// Easier than migrating older container configs :)
 	VolumesRW map[string]bool
 }