Skip to content

Commit a647a34

Browse files
committed
types/features: fix docstrings
Fix a few copy-paste errors. Fixes: 520702d Signed-off-by: Kir Kolyshkin <[email protected]>
1 parent 97317ce commit a647a34

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

types/features/features.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,11 @@ type Seccomp struct {
5353
// Nil value means "unknown", not "no support for any action".
5454
Actions []string `json:"actions,omitempty"`
5555

56-
// Operators is the list of the recognized actions, e.g., "SCMP_CMP_NE".
56+
// Operators is the list of the recognized operators, e.g., "SCMP_CMP_NE".
5757
// Nil value means "unknown", not "no support for any operator".
5858
Operators []string `json:"operators,omitempty"`
5959

60-
// Operators is the list of the recognized archs, e.g., "SCMP_ARCH_X86_64".
60+
// Archs is the list of the recognized archs, e.g., "SCMP_ARCH_X86_64".
6161
// Nil value means "unknown", not "no support for any arch".
6262
Archs []string `json:"archs,omitempty"`
6363
}

0 commit comments

Comments
 (0)