From 45438861b2e59781f2c21d050643af2e76560735 Mon Sep 17 00:00:00 2001 From: Aire-One Date: Sat, 21 Jan 2023 21:04:15 +0100 Subject: [PATCH] fix(entity): shouldn't redefine signature --- src/awesomewm.d.tl/entity/Function_Info.tl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/awesomewm.d.tl/entity/Function_Info.tl b/src/awesomewm.d.tl/entity/Function_Info.tl index d3e3478..534da92 100644 --- a/src/awesomewm.d.tl/entity/Function_Info.tl +++ b/src/awesomewm.d.tl/entity/Function_Info.tl @@ -18,7 +18,7 @@ local record Function_Info parameters: List return_types: List - append_parameter: function(self: Function_Info, name: string, type: string) + append_parameter: function(self: Function_Info, name: string, types: List) append_return_type: function(self: Function_Info, return_type: string) fixup: function(Function_Info)