Function: cider--render-docstring-first-sentence
cider--render-docstring-first-sentence is a byte-compiled function
defined in cider-docstring.el.
Signature
(cider--render-docstring-first-sentence ELDOC-INFO)
Documentation
Render the first sentence of the docstring extracted from ELDOC-INFO.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-docstring.el
(defun cider--render-docstring-first-sentence (eldoc-info)
"Render the first sentence of the docstring extracted from ELDOC-INFO."
(when-let ((first-sentence-fragments (cider-plist-get eldoc-info "doc-first-sentence-fragments")))
(cider--fragments-to-s first-sentence-fragments)))