aboutsummaryrefslogtreecommitdiff
path: root/src/server/documentation.odin
diff options
context:
space:
mode:
authorBrad Lewis <22850972+BradLewis@users.noreply.github.com>2025-08-22 21:54:44 -0400
committerBrad Lewis <22850972+BradLewis@users.noreply.github.com>2025-08-22 22:29:31 -0400
commit302698f2b878cf68302fee5a46a49086e17a83cc (patch)
tree1e0702d8a52781e928aebc3947660a977c9fe26f /src/server/documentation.odin
parent52839df5fa441be5cf1cd0fb0e6b43cb5c6560c6 (diff)
Always collect private symbols and filter them when resolving
Diffstat (limited to 'src/server/documentation.odin')
-rw-r--r--src/server/documentation.odin2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/documentation.odin b/src/server/documentation.odin
index 1cc804d..ac1227f 100644
--- a/src/server/documentation.odin
+++ b/src/server/documentation.odin
@@ -335,7 +335,7 @@ write_short_signature :: proc(sb: ^strings.Builder, ast_context: ^AstContext, sy
case SymbolProcedureValue:
write_procedure_symbol_signature(sb, v, detailed_signature = true)
return
- case SymbolAggregateValue:
+ case SymbolAggregateValue, SymbolProcedureGroupValue:
strings.write_string(sb, "proc (..)")
return
case SymbolStructValue: