We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61a615d commit fd84fadCopy full SHA for fd84fad
cider-docstring.el
@@ -148,7 +148,7 @@ Prioritize rendering as much as possible while staying within `cider-docstring-m
148
(concat string (when (> (length lines) max-lines) "..."))))
149
150
(defun cider-docstring--format (string)
151
- "Performs formatting of STRING, cleaning up some common whitespace issues."
+ "Return a nicely formatted STRING to be displayed to the user."
152
(let* ((string (replace-regexp-in-string "\\. " ".\n\n" string)) ;; improve the formatting of e.g. clojure.core/reduce
153
(string (mapconcat (lambda (line)
154
;; Remove spaces at the beginning of each line, as it is common in many clojure.core defns:
0 commit comments