summaryrefslogtreecommitdiff
path: root/server/src
diff options
context:
space:
mode:
Diffstat (limited to 'server/src')
-rw-r--r--server/src/core/hover/function.lua2
-rw-r--r--server/src/core/hover/lib_function.lua2
2 files changed, 2 insertions, 2 deletions
diff --git a/server/src/core/hover/function.lua b/server/src/core/hover/function.lua
index 25849d69..df26cd40 100644
--- a/server/src/core/hover/function.lua
+++ b/server/src/core/hover/function.lua
@@ -126,7 +126,7 @@ local function buildValueReturns(func)
end
end
if i > 1 then
- strs[#strs+1] = ', '
+ strs[#strs+1] = '\n , '
end
if emmy and emmy.name then
strs[#strs+1] = ('%s: '):format(emmy.name)
diff --git a/server/src/core/hover/lib_function.lua b/server/src/core/hover/lib_function.lua
index 96ed0f5e..09b1e47b 100644
--- a/server/src/core/hover/lib_function.lua
+++ b/server/src/core/hover/lib_function.lua
@@ -92,7 +92,7 @@ local function buildLibReturns(lib)
end
end
if i > 1 then
- strs[#strs+1] = ', '
+ strs[#strs+1] = '\n , '
end
if rtn.name then
strs[#strs+1] = ('%s: '):format(rtn.name)