branch: elpa/clojure-ts-mode commit 606740ac2987c8cc98314080e9f31e6cb8708ce3 Author: Bozhidar Batsov <bozhi...@batsov.dev> Commit: Bozhidar Batsov <bozhi...@batsov.dev>
Fix docstring --- clojure-ts-mode.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clojure-ts-mode.el b/clojure-ts-mode.el index 3cfe8fcc62..3e67f8ddb8 100644 --- a/clojure-ts-mode.el +++ b/clojure-ts-mode.el @@ -619,7 +619,7 @@ This does not include the NODE's namespace." (treesit-node-child node (if (clojure-ts--metadata-node-p first-child) (1+ n) n) t))) (defun clojure-ts--node-with-metadata-parent (node) - "Return parent for NODE only if NODE has metadata, otherwise returns nil." + "Return parent for NODE only if NODE has metadata, otherwise return nil." (when-let* ((prev-sibling (treesit-node-prev-sibling node)) ((clojure-ts--metadata-node-p prev-sibling))) (treesit-node-parent (treesit-node-parent node))))