Merge pull request #2 from lichenbo/master

Fix typos in elisp
This commit is contained in:
Bastien 2013-07-29 04:27:45 -07:00
commit 4da8d6dd7b

View File

@ -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: