diff options
| author | Brad Lewis <22850972+BradLewis@users.noreply.github.com> | 2025-07-22 19:07:01 -0400 |
|---|---|---|
| committer | Brad Lewis <22850972+BradLewis@users.noreply.github.com> | 2025-07-22 19:07:01 -0400 |
| commit | 923e83bced40223abb3ff1be69f2a910b4d2c004 (patch) | |
| tree | 5c5a7cc6f9904b628d6f896035e82805667d1e54 | |
| parent | dbb3700f62559155871b6b27f4d65cc0db15aee9 (diff) | |
Remove comment above proc
| -rw-r--r-- | src/server/documentation.odin | 3 |
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") |