Skip to content

Commit 05baba0

Browse files
committed
lint
1 parent ef41e9a commit 05baba0

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

agent/agentproc/proc_other.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,21 +8,21 @@ import (
88
)
99

1010
func (p *Process) SetOOMAdj(score int) error {
11-
return errUnimplimented
11+
return errUnimplemented
1212
}
1313

1414
func (p *Process) Niceness(sc Syscaller) (int, error) {
15-
return 0, errUnimplimented
15+
return 0, errUnimplemented
1616
}
1717

1818
func (p *Process) SetNiceness(sc Syscaller, score int) error {
19-
return errUnimplimented
19+
return errUnimplemented
2020
}
2121

2222
func (p *Process) Name() string {
2323
return ""
2424
}
2525

2626
func List(fs afero.Fs, syscaller Syscaller) ([]*Process, error) {
27-
return nil, errUnimplimented
27+
return nil, errUnimplemented
2828
}

agent/agentproc/syscaller_other.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ func NewSyscaller() Syscaller {
1313
return nopSyscaller{}
1414
}
1515

16-
var errUnimplimented = xerrors.New("unimplemented")
16+
var errUnimplemented = xerrors.New("unimplemented")
1717

1818
type nopSyscaller struct{}
1919

0 commit comments

Comments
 (0)