summaryrefslogtreecommitdiffhomepage
path: root/runsc/cmd
diff options
context:
space:
mode:
authorFabricio Voznika <fvoznika@google.com>2018-06-25 10:40:24 -0700
committerShentubot <shentubot@google.com>2018-06-25 10:41:27 -0700
commitcecc1e472cc893738a070be00d303dd888b9f325 (patch)
tree952d66785acfcc63505821e22e10320748ebdfac /runsc/cmd
parent9c0c4fd8d05cca4905a0f8e4f391045566e4d401 (diff)
Fix lint errors
PiperOrigin-RevId: 201978212 Change-Id: Ie3df1fd41d5293fff66b546a0c68c3bf98126067
Diffstat (limited to 'runsc/cmd')
-rw-r--r--runsc/cmd/capability.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/runsc/cmd/capability.go b/runsc/cmd/capability.go
index 0209feb1b..e2410d4ad 100644
--- a/runsc/cmd/capability.go
+++ b/runsc/cmd/capability.go
@@ -78,7 +78,7 @@ func trimCaps(names []string, setter capability.Capabilities) ([]capability.Cap,
var caps []capability.Cap
for _, c := range wantedCaps {
// Capability rules are more complicated than this, but this catches most
- // problems with tests running with non-priviledged user.
+ // problems with tests running with non-privileged user.
if setter.Get(capability.PERMITTED, c) {
caps = append(caps, c)
} else {