1
0
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-12-26 10:49:38 +00:00

ox-html.el (org-html-encode-plain-text): Fix typo in docstring

* ox-html.el (org-html-encode-plain-text): Fix typo in docstring.
This commit is contained in:
Bastien Guerry 2013-03-04 19:41:34 +01:00
parent 65440264de
commit 584a782174

View File

@ -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)))