~edwargix/axon

55192e2651f6b4efb7a694ff9dd76e849f30686f — David Florness 2 years ago f3308f4
echo: fix formatting of usage string
1 files changed, 1 insertions(+), 1 deletions(-)

M echo/cmd.go
M echo/cmd.go => echo/cmd.go +1 -1
@@ 13,7 13,7 @@ import (
func init() {
	x := cmdtab.New("echo")
	x.Summary = "print all events, optionally filtering for a specific room"
	x.Usage = "[roomID]"
	x.Usage = "[<roomID>]"

	x.Method = func(args []string) error {
		if len(args) > 1 || (len(args) > 0 && args[0] == "-h") {