From 7008ea1229ad87c95bddaec9a558d2ef7b14cfe5 Mon Sep 17 00:00:00 2001 From: tonjo Date: Sat, 3 Mar 2018 10:18:58 +0100 Subject: [PATCH] Added help for wildcard on get --- session/session_core_handlers.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/session/session_core_handlers.go b/session/session_core_handlers.go index 241a0247..9661e556 100644 --- a/session/session_core_handlers.go +++ b/session/session_core_handlers.go @@ -274,7 +274,7 @@ func (s *Session) registerCoreHandlers() { s.addHandler(NewCommandHandler("get NAME", "^get\\s+(.+)", - "Get the value of variable NAME, use * for all.", + "Get the value of variable NAME, use * as a wildcard.", s.getHandler), readline.PcItem("get", readline.PcItemDynamic(func(prefix string) []string { prefix = core.Trim(prefix[3:])