aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--hst/fsbind.go2
-rw-r--r--hst/fsephemeral.go2
-rw-r--r--hst/fsoverlay.go2
3 files changed, 3 insertions, 3 deletions
diff --git a/hst/fsbind.go b/hst/fsbind.go
index 496453b3..7aa273c5 100644
--- a/hst/fsbind.go
+++ b/hst/fsbind.go
@@ -9,7 +9,7 @@ import (
func init() { gob.Register(new(FSBind)) }
-// FilesystemBind is the [FilesystemConfig.Type] name of a bind mount point.
+// FilesystemBind is the type string of a bind mount point.
const FilesystemBind = "bind"
// FSBind represents a host to container bind mount.
diff --git a/hst/fsephemeral.go b/hst/fsephemeral.go
index ad212fda..e09fa8f9 100644
--- a/hst/fsephemeral.go
+++ b/hst/fsephemeral.go
@@ -10,7 +10,7 @@ import (
func init() { gob.Register(new(FSEphemeral)) }
-// FilesystemEphemeral is the [FilesystemConfig.Type] name of a mount point with ephemeral state.
+// FilesystemEphemeral is the type string of a mount point with ephemeral state.
const FilesystemEphemeral = "ephemeral"
// FSEphemeral represents an ephemeral container mount point.
diff --git a/hst/fsoverlay.go b/hst/fsoverlay.go
index 9b8e97f9..f3c2f373 100644
--- a/hst/fsoverlay.go
+++ b/hst/fsoverlay.go
@@ -9,7 +9,7 @@ import (
func init() { gob.Register(new(FSOverlay)) }
-// FilesystemOverlay is the [FilesystemConfig.Type] name of an overlay mount point.
+// FilesystemOverlay is the type string of an overlay mount point.
const FilesystemOverlay = "overlay"
// FSOverlay represents an overlay mount point.