fix some typo

This commit is contained in:
Akkia
2022-04-10 20:28:22 +08:00
parent 97ef37ac56
commit 91a1e3fe22
4 changed files with 6 additions and 6 deletions

View File

@@ -561,7 +561,7 @@ func editAgentConfig() {
panic(err)
}
fmt.Println("修改自定义配置成功,重启 Agnet 后生效")
fmt.Println("修改自定义配置成功,重启 Agent 后生效")
}
func println(v ...interface{}) {

View File

@@ -41,7 +41,7 @@ func GetHost(agentConfig *model.AgentConfig) *model.Host {
hi, _ := host.Info()
var cpuType string
if hi.VirtualizationSystem != "" {
cpuType = "Vrtual"
cpuType = "Virtual"
} else {
cpuType = "Physical"
}