aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/server/documentation.odin3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/server/documentation.odin b/src/server/documentation.odin
index eba1855..c57e078 100644
--- a/src/server/documentation.odin
+++ b/src/server/documentation.odin
@@ -663,9 +663,6 @@ concatenate_raw_symbol_information :: proc(ast_context: ^AstContext, symbol: Sym
if v, ok := symbol.value.(SymbolProcedureValue); ok {
pkg := path.base(symbol.pkg, false, context.temp_allocator)
sb := strings.builder_make(context.temp_allocator)
- if symbol.comment != "" {
- fmt.sbprintf(&sb, "%s\n", symbol.comment)
- }
for attribute in v.attributes {
if len(attribute.elems) == 0 {
strings.write_string(&sb, "@()\n")