1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-01-17 05:28:37 +01:00

Fix more typos.

This commit is contained in:
Bastien Guerry 2013-07-29 13:29:11 +02:00
parent 4da8d6dd7b
commit 6bb7de9295

View File

@ -6,7 +6,9 @@ filename: learn-emacs-lisp.el
--- ---
```elisp ```elisp
;; This gives an introduction to Emacs Lisp in 15 minutes (v0.2a) ;; This gives an introduction to Emacs Lisp in 15 minutes (v0.2d)
;;
;; Author: Bastien / @bzg2 / http://bzg.fr
;; ;;
;; First make sure you read this text by Peter Norvig: ;; First make sure you read this text by Peter Norvig:
;; http://norvig.com/21-days.html ;; http://norvig.com/21-days.html
@ -127,7 +129,7 @@ filename: learn-emacs-lisp.el
(switch-to-buffer-other-window "*test*") (switch-to-buffer-other-window "*test*")
;; `C-xC-e' ;; `C-xC-e'
;: => [screen has two windows and cursor is in the *test* buffer] ;; => [screen has two windows and cursor is in the *test* buffer]
;; Mouse over the top window and left-click to go back. Or you can ;; Mouse over the top window and left-click to go back. Or you can
;; use `C-xo' (i.e. hold down control-x and hit o) to go to the other ;; use `C-xo' (i.e. hold down control-x and hit o) to go to the other
@ -138,7 +140,7 @@ filename: learn-emacs-lisp.el
(switch-to-buffer-other-window "*test*") (switch-to-buffer-other-window "*test*")
(hello "you")) (hello "you"))
;; `C-xC-e' ;; `C-xC-e'
;: => [The screen has two windows and cursor is in the *test* buffer] ;; => [The screen has two windows and cursor is in the *test* buffer]
;; Now if you don't mind, I'll stop asking you to hit `C-xC-e': do it ;; Now if you don't mind, I'll stop asking you to hit `C-xC-e': do it
;; for every sexp that follows. ;; for every sexp that follows.
@ -346,4 +348,6 @@ filename: learn-emacs-lisp.el
;; - Kevin Montuori ;; - Kevin Montuori
;; - Arne Babenhauserheide ;; - Arne Babenhauserheide
;; - Alan Schmitt ;; - Alan Schmitt
;; - LinXitoW
;; - Aaron Meurer
``` ```