diff options
author | Chenbo Li <lichenbo1949@gmail.com> | 2013-07-29 12:33:13 +0800 |
---|---|---|
committer | Chenbo Li <lichenbo1949@gmail.com> | 2013-07-29 12:33:13 +0800 |
commit | bbde710a40ee25119d8d706886fecd5786182b20 (patch) | |
tree | f8f54177f2cc44fb3b7d91a3ebae450922b52172 /elisp.html.markdown | |
parent | 07d909018f2436cc7c30dad83c5b4f590af4ea0d (diff) |
typo
Diffstat (limited to 'elisp.html.markdown')
-rw-r--r-- | elisp.html.markdown | 2 |
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: |