mirror of
https://code.dumpstack.io/tools/appvm.git
synced 2024-11-27 10:31:31 +00:00
Fix typos
This commit is contained in:
parent
9218a10641
commit
ff4e7f8398
2
appvm.go
2
appvm.go
|
@ -367,7 +367,7 @@ func main() {
|
||||||
kingpin.Command("list", "List applications")
|
kingpin.Command("list", "List applications")
|
||||||
autoballonCommand := kingpin.Command("autoballoon", "Automatically adjust/reduce app vm memory")
|
autoballonCommand := kingpin.Command("autoballoon", "Automatically adjust/reduce app vm memory")
|
||||||
minMemory := autoballonCommand.Flag("min-memory", "Set minimal memory (megabytes)").Default("1024").Uint64()
|
minMemory := autoballonCommand.Flag("min-memory", "Set minimal memory (megabytes)").Default("1024").Uint64()
|
||||||
adjustPercent := autoballonCommand.Flag("adj-memory", "Adjust memory ammount (percents)").Default("20").Uint64()
|
adjustPercent := autoballonCommand.Flag("adj-memory", "Adjust memory amount (percents)").Default("20").Uint64()
|
||||||
|
|
||||||
startCommand := kingpin.Command("start", "Start application")
|
startCommand := kingpin.Command("start", "Start application")
|
||||||
startName := startCommand.Arg("name", "Application name").Required().String()
|
startName := startCommand.Arg("name", "Application name").Required().String()
|
||||||
|
|
Loading…
Reference in a new issue