Skip to content

Commit f6b0be3

Browse files
committed
Fix a couple of docstrings
1 parent c433916 commit f6b0be3

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

clojure-mode.el

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -439,11 +439,14 @@ ENDP and DELIM."
439439
(t)))))
440440

441441
(defconst clojure--collection-tag-regexp "#\\(::[a-zA-Z0-9._-]*\\|:?\\([a-zA-Z0-9._-]+/\\)?[a-zA-Z0-9._-]+\\)"
442-
"Allowed strings that can come before a collection literal (e.g. '[]' or '{}'), as reader macro tags.
443-
This includes #fully.qualified/my-ns[:kw val] and #::my-ns{:kw val} as of Clojure 1.9.")
442+
"Collection reader macro tag regexp.
443+
It is intended to check for allowed strings that can come before a
444+
collection literal (e.g. '[]' or '{}'), as reader macro tags.
445+
This includes #fully.qualified/my-ns[:kw val] and #::my-ns{:kw
446+
val} as of Clojure 1.9.")
444447

445448
(defun clojure-no-space-after-tag (endp delimiter)
446-
"Prevent inserting a space after a reader-literal tag?
449+
"Prevent inserting a space after a reader-literal tag.
447450
448451
When a reader-literal tag is followed be an opening delimiter
449452
listed in `clojure-omit-space-between-tag-and-delimiters', this

0 commit comments

Comments
 (0)