aboutsummaryrefslogtreecommitdiff
path: root/src/server/methods.odin
diff options
context:
space:
mode:
authorBrad Lewis <22850972+BradLewis@users.noreply.github.com>2025-07-30 08:21:53 -0400
committerBrad Lewis <22850972+BradLewis@users.noreply.github.com>2025-07-30 08:21:53 -0400
commit061d866edf89bbc8314c9ea4452a5feae17d445a (patch)
tree683893de70e878029cc55e01b02c1acf6b64791c /src/server/methods.odin
parent58b9260ab648539bee0c78b7e53861b40d1d6ce8 (diff)
Fix issues due to merge
Diffstat (limited to 'src/server/methods.odin')
-rw-r--r--src/server/methods.odin4
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})