diff options
author | Stefan Kangas <stefan@marxist.se> | 2021-10-10 13:52:24 +0200 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2021-10-10 13:53:55 +0200 |
commit | 1d1e96377c6228e4479c65066382681dc1887397 (patch) | |
tree | c1f31f5850d987d9506b5d2b0bb9a450e3fd6229 /lisp/emacs-lisp/shortdoc.el | |
parent | 6bf29072e968401f842789c71468e624e5c913a9 (diff) | |
download | emacs-1d1e96377c6228e4479c65066382681dc1887397.tar.gz emacs-1d1e96377c6228e4479c65066382681dc1887397.tar.bz2 emacs-1d1e96377c6228e4479c65066382681dc1887397.zip |
; * lisp/emacs-lisp/shortdoc.el: Fix typo.
Diffstat (limited to 'lisp/emacs-lisp/shortdoc.el')
-rw-r--r-- | lisp/emacs-lisp/shortdoc.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/shortdoc.el b/lisp/emacs-lisp/shortdoc.el index 51c822d21e2..25bd17bdb96 100644 --- a/lisp/emacs-lisp/shortdoc.el +++ b/lisp/emacs-lisp/shortdoc.el @@ -1319,11 +1319,11 @@ function's documentation in the Info manual"))) (princ value (current-buffer)) (insert "\n")) (:eg-result - (insert " eg. " double-arrow " ") + (insert " e.g. " double-arrow " ") (prin1 value (current-buffer)) (insert "\n")) (:eg-result-string - (insert " eg. " double-arrow " ") + (insert " e.g. " double-arrow " ") (princ value (current-buffer)) (insert "\n"))))) ;; Insert the arglist after doing the evals, in case that's pulled |