summaryrefslogtreecommitdiffhomepage
path: root/elisp.html.markdown
diff options
context:
space:
mode:
authorBastien <bzg@altern.org>2013-07-29 04:27:45 -0700
committerBastien <bzg@altern.org>2013-07-29 04:27:45 -0700
commit4da8d6dd7b4c51711419a3ab75db6da8573d6963 (patch)
tree26a26595d8c1b64d89c2ac15f955f79223bd6822 /elisp.html.markdown
parentd9b700da2580f1a341319118601c4e8cfd0e013a (diff)
parentbbde710a40ee25119d8d706886fecd5786182b20 (diff)
Merge pull request #2 from lichenbo/master
Fix typos in elisp
Diffstat (limited to 'elisp.html.markdown')
-rw-r--r--elisp.html.markdown4
1 files changed, 2 insertions, 2 deletions
diff --git a/elisp.html.markdown b/elisp.html.markdown
index 60bff3e8..d62a0a49 100644
--- a/elisp.html.markdown
+++ b/elisp.html.markdown
@@ -35,7 +35,7 @@ filename: learn-emacs-lisp.el
;; Now look at the gray line at the bottom of the window:
;;
;; "*scratch*" is the name of the editing space you are now in.
-;: This editing space is called a "buffer".
+;; This editing space is called a "buffer".
;;
;; The scratch buffer is the default buffer when opening Emacs.
;; You are never editing files: you are editing buffers that you
@@ -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: