Fix various typos found by codespell (#3057)

By running the following command:

codespell -S .git,*.png,*.jpg,*.woff,*.ttf,*.gif,*.ico -L \
iam,aks,ist,bridget,ue

Signed-off-by: Mateusz Gozdek <mgozdekof@gmail.com>
This commit is contained in:
Mateusz Gozdek
2020-11-10 11:48:35 -05:00
committed by GitHub
parent dc6762a895
commit dbc83af77b
82 changed files with 117 additions and 116 deletions
+1 -1
View File
@@ -106,7 +106,7 @@ func (p *restartableProcess) reset() error {
// Callers of resetLH *must* acquire the lock before calling it.
func (p *restartableProcess) resetLH() error {
if p.resetFailures > 10 {
return errors.Errorf("unable to restart plugin process: execeeded maximum number of reset failures")
return errors.Errorf("unable to restart plugin process: exceeded maximum number of reset failures")
}
process, err := newProcess(p.command, p.logger, p.logLevel)