diff options
Diffstat (limited to 'runsc/boot/config.go')
-rw-r--r-- | runsc/boot/config.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runsc/boot/config.go b/runsc/boot/config.go index c13ac150d..3fca16cce 100644 --- a/runsc/boot/config.go +++ b/runsc/boot/config.go @@ -24,10 +24,10 @@ import ( type PlatformType int const ( - // Ptrace runs the sandbox with the ptrace platform. + // PlatformPtrace runs the sandbox with the ptrace platform. PlatformPtrace PlatformType = iota - // KVM runs the sandbox with the KVM platform. + // PlatformKVM runs the sandbox with the KVM platform. PlatformKVM ) |