From ea8d089e801cf1cd24a543482855a2a2d2aa7395 Mon Sep 17 00:00:00 2001 From: Lucien Cartier-Tilet Date: Thu, 1 Oct 2020 09:57:41 +0200 Subject: [PATCH] Fix formatting of documentation --- funcs.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/funcs.el b/funcs.el index 1352731..6017021 100644 --- a/funcs.el +++ b/funcs.el @@ -14,7 +14,7 @@ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (defun conlanging//declare-node (t-node-text t-node-generation) "Declares a node in the graphviz source code. The node’s identifier will be -~node-generation~, and it will bear the label ~node-text~." +`node-generation', and it will bear the label `node-text'." (format "%d[label=\"%s\"];" t-node-generation t-node-text))