From 267bce8449c09912c1b1e1515517924d6f3bfafe Mon Sep 17 00:00:00 2001 From: sammyette Date: Sat, 11 Nov 2023 20:36:47 -0400 Subject: [PATCH] docs(hilbish.module): fix description --- module.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/module.go b/module.go index fb9fd35..2ab55e8 100644 --- a/module.go +++ b/module.go @@ -11,7 +11,8 @@ import ( // #interface module // native module loading // #field paths A list of paths to search when loading native modules. This is in the style of Lua search paths and will be used when requiring native modules. Example: `?.so;?/?.so` -/* The hilbish.module interface provides a function to load +/* +The hilbish.module interface provides a function to load Hilbish plugins/modules. Hilbish modules are Go-written plugins (see https://pkg.go.dev/plugin) that are used to add functionality to Hilbish that cannot be written in Lua for any reason.