diff --git a/README.md b/README.md index 03ee58d..e07d576 100644 --- a/README.md +++ b/README.md @@ -227,7 +227,7 @@ _Hint:_ You can put code in capture handlers via %() blocks. I use this mechanis (defun transform-square-brackets-to-round-ones(string-to-transform) "Transforms [ into ( and ] into ), other chars left unchanged." (concat - (mapcar #'(lambda (c) (if (equal c ?[) ?\( (if (equal c ?]) ?\) c))) string-to-transform)) + (mapcar #'(lambda (c) (if (equal c ?\[) ?\( (if (equal c ?\]) ?\) c))) string-to-transform)) ) (setq org-capture-templates `(