From cec049ebe8bb5a2107e3dc8772abd93a990352b2 Mon Sep 17 00:00:00 2001 From: Tobias Ehn Date: Sun, 8 Sep 2024 13:06:30 +0200 Subject: [PATCH] missing file in last commit --- finalize-plugins/shell-final.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/finalize-plugins/shell-final.go b/finalize-plugins/shell-final.go index 7a9d5a8..03f0da4 100644 --- a/finalize-plugins/shell-final.go +++ b/finalize-plugins/shell-final.go @@ -18,7 +18,7 @@ type Shell struct { Cwd string `json:"cwd"` } -// Provide information about the plugin as a JSON string +// Provide plugin information as a JSON string // //export PlugInfo func PlugInfo() *C.char { @@ -30,7 +30,7 @@ func PlugInfo() *C.char { return C.CString(string(pluginjson)) } -// Provide the plugin scope as a bitmask +// Provide the plugin scope // //export PluginScope func PluginScope() int32 { // int32 is defined as GoInt32 in cgo which is the same as a C int