Typo fix in info message

Typo fix in info message
This commit is contained in:
AdamDang 2018-04-02 22:02:40 +08:00 committed by GitHub
parent d7cbe3307b
commit e11f36309f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -240,7 +240,7 @@ func getSystemdDependencies(serviceName string, definition string) ([]string, er
// We extract the first argument (only)
tokens := strings.SplitN(v, " ", 2)
dependencies = append(dependencies, tokens[0])
glog.V(2).Infof("extracted depdendency from %q: %q", line, tokens[0])
glog.V(2).Infof("extracted dependency from %q: %q", line, tokens[0])
}
}
return dependencies, nil