diff options
-rw-r--r-- | script/core/completion/completion.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/script/core/completion/completion.lua b/script/core/completion/completion.lua index e9257bea..5c55c16b 100644 --- a/script/core/completion/completion.lua +++ b/script/core/completion/completion.lua @@ -2357,8 +2357,8 @@ end local function tryCompletions(state, position, triggerCharacter, results) if getComment(state, position) then trySymbolReference(state, position, results) - tryComment(state, position, results) tryLuaDoc(state, position, results) + tryComment(state, position, results) return end if postfix(state, position, results) then |