From 07a7a75b463db52a46f5cda0f75c0f41f96498a8 Mon Sep 17 00:00:00 2001 From: sammyette Date: Sat, 7 Jan 2023 11:52:05 -0400 Subject: [PATCH] docs: fix return type for hilbish.aliases.list --- aliases.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aliases.go b/aliases.go index d9416d9..bfacc43 100644 --- a/aliases.go +++ b/aliases.go @@ -92,9 +92,9 @@ func (a *aliasModule) Loader(rtm *rt.Runtime) *rt.Table { func _hlalias() {} // #interface aliases -// list() -> aliases (table) +// list() -> table // Get a table of all aliases, with string keys as the alias and the value as the command. -// @returns table +// --- @returns table func (a *aliasModule) luaList(t *rt.Thread, c *rt.GoCont) (rt.Cont, error) { aliasesList := rt.NewTable() for k, v := range a.All() {