summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorChenbo Li <lichenbo1949@gmail.com>2013-07-29 12:33:13 +0800
committerChenbo Li <lichenbo1949@gmail.com>2013-07-29 12:33:13 +0800
commitbbde710a40ee25119d8d706886fecd5786182b20 (patch)
treef8f54177f2cc44fb3b7d91a3ebae450922b52172
parent07d909018f2436cc7c30dad83c5b4f590af4ea0d (diff)
typo
-rw-r--r--elisp.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/elisp.html.markdown b/elisp.html.markdown
index 85a337d6..1d76ea88 100644
--- a/elisp.html.markdown
+++ b/elisp.html.markdown
@@ -171,7 +171,7 @@ filename: learn-emacs-lisp.el
;; Let's format a string:
(format "Hello %s!\n" "visitor")
-;; %s is a place-holder for a string, replaced by "Alice".
+;; %s is a place-holder for a string, replaced by "visitor".
;; \n is the newline character.
;; Let's refine our function by using format: