File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -548,7 +548,7 @@ Used only when the info nREPL middleware is not available."
548
548
var-info))
549
549
550
550
(defun cider-var-info (var &optional all )
551
- " Return VAR's info as an alist with list cdrs .
551
+ " Return info for VAR as an nREPL dict .
552
552
When multiple matching vars are returned you'll be prompted to select one,
553
553
unless ALL is truthy."
554
554
(when (and var (not (string= var " " )))
@@ -559,7 +559,7 @@ unless ALL is truthy."
559
559
(if all var-info (cider--var-choice var-info)))))
560
560
561
561
(defun cider-member-info (class member )
562
- " Return the CLASS MEMBER's info as an alist with list cdrs ."
562
+ " Return info for MEMBER of CLASS as an nREPL dict ."
563
563
(when (and class member )
564
564
(cider-sync-request:info nil class member (cider-completion-get-context t ))))
565
565
You can’t perform that action at this time.
0 commit comments