emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/parseclj 13059d8529 138/185: Minor checkdoc fixes


From: ELPA Syncer
Subject: [nongnu] elpa/parseclj 13059d8529 138/185: Minor checkdoc fixes
Date: Tue, 28 Dec 2021 14:05:29 -0500 (EST)

branch: elpa/parseclj
commit 13059d8529f8352497f5ceaf671476d7b8968dac
Author: Daniel Barreto <daniel.barreto.n@gmail.com>
Commit: Daniel Barreto <daniel.barreto.n@gmail.com>

    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)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]