Skip to content

Commit 94d3415

Browse files
committed
Fix docstring
1 parent 6b9ca70 commit 94d3415

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lsp-ivy.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@
115115

116116
(defun lsp-ivy--format-symbol-match (symbol-information-match)
117117
"Convert the match returned by `lsp-mode` into a candidate string.
118-
SYMBOL-INFORMATION-MATCH is a cons cell whose cdr is the hash-table from `lsp-mode`."
118+
SYMBOL-INFORMATION-MATCH is a cons cell whose cdr is the SymbolInformation interface from `lsp-mode`."
119119
(-let* (((&SymbolInformation :name :kind :container-name?) (cdr symbol-information-match))
120120
(type (elt lsp-ivy-symbol-kind-to-face kind))
121121
(typestr (if lsp-ivy-show-symbol-kind
@@ -126,7 +126,7 @@ SYMBOL-INFORMATION-MATCH is a cons cell whose cdr is the hash-table from `lsp-mo
126126
(format "%s.%s" container-name? name)))))
127127

128128
(defun lsp-ivy--workspace-symbol-action (symbol-information-candidate)
129-
"Jump to selected SYMBOL-INFORMATION-CANDIDATE, a cons cell whose cdr is a hash table."
129+
"Jump to selected SYMBOL-INFORMATION-CANDIDATE, a cons cell whose cdr is a a SymbolInformation."
130130
(-let (((&SymbolInformation :location
131131
(&Location :uri
132132
:range

0 commit comments

Comments
 (0)