Skip to content

Commit 2fc51de

Browse files
fixed go vet issues
1 parent 3351ff2 commit 2fc51de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

langserver/handle_text_document_symbol.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ func (h *LangHandler) handleTextDocumentSymbols(ctx context.Context, conn *jsonr
2727
}
2828
return getDocumentSymbols(params, node), nil
2929
}
30-
return nil, fmt.Errorf("% not open", params.TextDocument.URI)
30+
return nil, fmt.Errorf("%s not open", params.TextDocument.URI)
3131
}
3232

3333
func getDocumentSymbols(params DocumentSymbolParams, node ast.Node) []SymbolInformation {

0 commit comments

Comments
 (0)