Fix typos

pull/652/head
mingrammer 6 years ago
parent 533485542f
commit 017c9f9cbc

@ -9,7 +9,7 @@ import (
"golang.org/x/sys/unix"
)
// Usage returns a file system usage. path is a filessytem path such
// Usage returns a file system usage. path is a filesystem path such
// as "/", not device file path like "/dev/vda1". If you want to use
// a return value of disk.Partitions, use "Mountpoint" not "Device".
func Usage(path string) (*UsageStat, error) {

@ -269,7 +269,7 @@ func CgroupMemDockerWithContext(ctx context.Context, containerID string) (*Cgrou
return CgroupMem(containerID, common.HostSys("fs/cgroup/memory/docker"))
}
// getCgroupFilePath constructs file path to get targetted stats file.
// getCgroupFilePath constructs file path to get targeted stats file.
func getCgroupFilePath(containerID, base, target, file string) string {
if len(base) == 0 {
base = common.HostSys(fmt.Sprintf("fs/cgroup/%s/docker", target))

@ -657,7 +657,7 @@ func SensorsTemperaturesWithContext(ctx context.Context) ([]TemperatureStat, err
label = fmt.Sprintf("%s_", strings.Join(strings.Split(strings.TrimSpace(strings.ToLower(string(c))), " "), ""))
}
// Get the name of the tempearture you are reading
// Get the name of the temperature you are reading
name, err := ioutil.ReadFile(filepath.Join(filepath.Dir(file), "name"))
if err != nil {
return temperatures, err

@ -143,7 +143,7 @@ func TestKernelVersion(t *testing.T) {
t.Errorf("KernelVersion() failed, %v", err)
}
if version == "" {
t.Errorf("KernelVersion() retuns empty: %s", version)
t.Errorf("KernelVersion() returns empty: %s", version)
}
t.Logf("KernelVersion(): %s", version)
@ -155,7 +155,7 @@ func TestPlatformInformation(t *testing.T) {
t.Errorf("PlatformInformation() failed, %v", err)
}
if platform == "" {
t.Errorf("PlatformInformation() retuns empty: %v", platform)
t.Errorf("PlatformInformation() returns empty: %v", platform)
}
t.Logf("PlatformInformation(): %v, %v, %v", platform, family, version)

@ -100,7 +100,7 @@ type xswdev struct {
Used int32 // Used is the number of blocks used
}
// xswdev11 is a compatiblity for under FreeBSD 11
// xswdev11 is a compatibility for under FreeBSD 11
// sys/vm/swap_pager.c
type xswdev11 struct {
Version uint32 // Version is the version

@ -42,7 +42,7 @@ func parseNetstatLine(line string) (stat *IOCountersStat, linkID *uint, err erro
base := 1
numberColumns := len(columns)
// sometimes Address is ommitted
// sometimes Address is omitted
if numberColumns < 12 {
base = 0
}

@ -45,7 +45,7 @@ func IOCountersWithContext(ctx context.Context, pernic bool) ([]IOCountersStat,
continue
}
base := 1
// sometimes Address is ommitted
// sometimes Address is omitted
if len(values) < 13 {
base = 0
}

@ -41,7 +41,7 @@ func ParseNetstat(output string, mode string,
continue
}
base := 1
// sometimes Address is ommitted
// sometimes Address is omitted
if len(values) < columns {
base = 0
}

@ -186,7 +186,7 @@ func (p *Process) ParentWithContext(ctx context.Context) (*Process, error) {
// Return value could be one of these.
// R: Running S: Sleep T: Stop I: Idle
// Z: Zombie W: Wait L: Lock
// The charactor is same within all supported platforms.
// The character is same within all supported platforms.
func (p *Process) Status() (string, error) {
return p.StatusWithContext(context.Background())
}

@ -357,7 +357,7 @@ func Test_Connections(t *testing.T) {
t.Fatalf("error %v", err)
}
// TODO:
// Since go test open no conneciton, ret is empty.
// Since go test open no connection, ret is empty.
// should invoke child process or other solutions.
if len(c) != 0 {
t.Fatalf("wrong connections")

Loading…
Cancel
Save