Skip to content

Commit 09d3dd4

Browse files
katomusobbatsov
authored andcommitted
Tweak docstrings of cider-var-info and cider-member-info
1 parent feb8af5 commit 09d3dd4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cider-client.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -548,7 +548,7 @@ Used only when the info nREPL middleware is not available."
548548
var-info))
549549

550550
(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.
552552
When multiple matching vars are returned you'll be prompted to select one,
553553
unless ALL is truthy."
554554
(when (and var (not (string= var "")))
@@ -559,7 +559,7 @@ unless ALL is truthy."
559559
(if all var-info (cider--var-choice var-info)))))
560560

561561
(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."
563563
(when (and class member)
564564
(cider-sync-request:info nil class member (cider-completion-get-context t))))
565565

0 commit comments

Comments
 (0)