spec-go/config: comment fix

Signed-off-by: Ma Shimiao <mashimiao.fnst@cn.fujitsu.com>
This commit is contained in:
Ma Shimiao 2016-11-14 16:14:22 +08:00
parent cc983bb6f4
commit f305e643dc
1 changed files with 2 additions and 2 deletions

View File

@ -505,7 +505,7 @@ const (
ActAllow LinuxSeccompAction = "SCMP_ACT_ALLOW"
)
// LinuxOperatorOperator used to match syscall arguments in Seccomp
// LinuxSeccompOperator used to match syscall arguments in Seccomp
type LinuxSeccompOperator string
// Define operators for syscall arguments in Seccomp
@ -519,7 +519,7 @@ const (
OpMaskedEqual LinuxSeccompOperator = "SCMP_CMP_MASKED_EQ"
)
// Arg used for matching specific syscall arguments in Seccomp
// LinuxSeccompArg used for matching specific syscall arguments in Seccomp
type LinuxSeccompArg struct {
Index uint `json:"index"`
Value uint64 `json:"value"`