pkg/utils/sysctl/sysctl_linux.go: fix typo.
authorPaulo Pires <pjpires@gmail.com>
Fri, 3 Feb 2017 04:47:43 +0000 (04:47 +0000)
committerPaulo Pires <pjpires@gmail.com>
Fri, 3 Feb 2017 05:39:04 +0000 (05:39 +0000)
pkg/utils/sysctl/sysctl_linux.go

index 118bd27..fe06d2d 100644 (file)
@@ -24,7 +24,7 @@ import (
 // Sysctl provides a method to set/get values from /proc/sys - in linux systems
 // new interface to set/get values of variables formerly handled by sysctl syscall
 // If optional `params` have only one string value - this function will
-// set this value into coresponding sysctl variable
+// set this value into corresponding sysctl variable
 func Sysctl(name string, params ...string) (string, error) {
        if len(params) > 1 {
                return "", fmt.Errorf("unexcepted additional parameters")