diff --git a/pkg/plugins/runtime/runtime.go b/pkg/plugins/runtime/runtime.go index cd74ed0..abdd32c 100644 --- a/pkg/plugins/runtime/runtime.go +++ b/pkg/plugins/runtime/runtime.go @@ -19,7 +19,7 @@ type RuntimeBucket struct{} func (n RuntimeBucket) Run() (bucket.Results, error) { runtime := proc.GetContainerRuntime(0, 0) res := bucket.NewResults(bucketName) - res.AddComment(fmt.Sprintf("Container runtime %q", runtime)) + res.AddComment(fmt.Sprintf("The container runtime seems to be %s.", runtime)) return *res, nil }