ソースを参照

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

* ox-html.el (org-html-encode-plain-text): Fix typo in docstring.
Bastien Guerry 12 年 前
コミット
584a782174
1 ファイル変更1 行追加1 行削除
  1. 1 1
      lisp/ox-html.el

+ 1 - 1
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)))