From 584a782174df0281732bffe7e6bbd72e96c86077 Mon Sep 17 00:00:00 2001 From: Bastien Guerry Date: Mon, 4 Mar 2013 19:41:34 +0100 Subject: [PATCH] ox-html.el (org-html-encode-plain-text): Fix typo in docstring * ox-html.el (org-html-encode-plain-text): Fix typo in docstring. --- lisp/ox-html.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/ox-html.el b/lisp/ox-html.el index 31e45b23a..6ece26b3c 100644 --- a/lisp/ox-html.el +++ b/lisp/ox-html.el @@ -2654,7 +2654,7 @@ contextual information." (defun org-html-encode-plain-text (text) "Convert plain text characters to HTML equivalent. -Possible conversions are set in `org-export-html-protect-char-alist'." +Possible conversions are set in `org-html-protect-char-alist'." (mapc (lambda (pair) (setq text (replace-regexp-in-string (car pair) (cdr pair) text t t))) -- 2.11.4.GIT