diff options
| author | Brad Lewis <22850972+BradLewis@users.noreply.github.com> | 2025-07-30 08:21:53 -0400 |
|---|---|---|
| committer | Brad Lewis <22850972+BradLewis@users.noreply.github.com> | 2025-07-30 08:21:53 -0400 |
| commit | 061d866edf89bbc8314c9ea4452a5feae17d445a (patch) | |
| tree | 683893de70e878029cc55e01b02c1acf6b64791c /src/server/methods.odin | |
| parent | 58b9260ab648539bee0c78b7e53861b40d1d6ce8 (diff) | |
Fix issues due to merge
Diffstat (limited to 'src/server/methods.odin')
| -rw-r--r-- | src/server/methods.odin | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/methods.odin b/src/server/methods.odin index a054abb..1826ef6 100644 --- a/src/server/methods.odin +++ b/src/server/methods.odin @@ -128,12 +128,12 @@ append_method_completion :: proc( item := CompletionItem { label = symbol.name, kind = symbol_type_to_completion_kind(symbol.type), - detail = get_short_signature(ast_context, &symbol), + detail = get_short_signature(ast_context, symbol), additionalTextEdits = remove_edit, textEdit = TextEdit{newText = new_text, range = {start = range.end, end = range.end}}, insertTextFormat = .Snippet, InsertTextMode = .adjustIndentation, - documentation = construct_symbol_docs(&symbol), + documentation = construct_symbol_docs(symbol), } append(results, CompletionResult{completion_item = item}) |