From 09d3dd40415f8c16d243be22400d351ba9f3abef Mon Sep 17 00:00:00 2001 From: Kato Muso Date: Fri, 7 Jun 2024 17:35:28 +0000 Subject: [PATCH] Tweak docstrings of cider-var-info and cider-member-info --- cider-client.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cider-client.el b/cider-client.el index 99e66844b..0ae4025bd 100644 --- a/cider-client.el +++ b/cider-client.el @@ -548,7 +548,7 @@ Used only when the info nREPL middleware is not available." var-info)) (defun cider-var-info (var &optional all) - "Return VAR's info as an alist with list cdrs. + "Return info for VAR as an nREPL dict. When multiple matching vars are returned you'll be prompted to select one, unless ALL is truthy." (when (and var (not (string= var ""))) @@ -559,7 +559,7 @@ unless ALL is truthy." (if all var-info (cider--var-choice var-info))))) (defun cider-member-info (class member) - "Return the CLASS MEMBER's info as an alist with list cdrs." + "Return info for MEMBER of CLASS as an nREPL dict." (when (and class member) (cider-sync-request:info nil class member (cider-completion-get-context t))))