branch: elpa/parseclj
commit 13059d8529f8352497f5ceaf671476d7b8968dac
Author: Daniel Barreto <[email protected]>
Commit: Daniel Barreto <[email protected]>
Minor checkdoc fixes
---
parseclj.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/parseclj.el b/parseclj.el
index b56b629240..6a4849dd6c 100644
--- a/parseclj.el
+++ b/parseclj.el
@@ -68,7 +68,7 @@ key-value pairs to specify parsing options.
"Parse Clojure AST to source code.
Given an abstract syntax tree AST (as returned by
-parseclj-parse-clojure), turn it back into source code, and
+`parseclj-parse-clojure'), turn it back into source code, and
insert it into the current buffer."
(if (parseclj-ast-leaf-node-p ast)
(insert (a-get ast :form))
@@ -80,7 +80,7 @@ insert it into the current buffer."
"Parse Clojure AST to a source code string.
Given an abstract syntax tree AST (as returned by
-parseclj-parse-clojure), turn it back into source code, and
+`parseclj-parse-clojure'), turn it back into source code, and
return it as a string"
(with-temp-buffer
(parseclj-unparse-clojure ast)