Fixing typos

This commit is contained in:
Goheeca 2013-08-20 16:57:25 +02:00
parent f33dea8b83
commit 424fc8ce80

View File

@ -205,7 +205,7 @@ nil ; for false - and the empty list
;; Or use concatenate - ;; Or use concatenate -
(concatenate (concatenate 'list '(1 2) '(3 4))
;; Lists are a very central type, so there is a wide variety of functionality for ;; Lists are a very central type, so there is a wide variety of functionality for
;; them, a few examples: ;; them, a few examples:
@ -279,10 +279,10 @@ nil ; for false - and the empty list
;; not. ;; not.
;; Retrieving a non-present value returns nil ;; Retrieving a non-present value returns nil
(gethash *m* 'd) ;=> nil, nil (gethash 'd *m*) ;=> nil, nil
;; You can provide a default value for missing keys ;; You can provide a default value for missing keys
(gethash *m* 'd :not-found) ; => :NOT-FOUND (gethash 'd *m* :not-found) ; => :NOT-FOUND
;; Let's handle the multiple return values here in code. ;; Let's handle the multiple return values here in code.
@ -457,8 +457,8 @@ nil ; for false - and the empty list
:accessor velocity :accessor velocity
:initarg :velocity) :initarg :velocity)
(average-efficiency (average-efficiency
:accessor average-efficiency) :accessor average-efficiency
:initarg :average-efficiency) :initarg :average-efficiency))
(:documentation "A human powered conveyance")) (:documentation "A human powered conveyance"))
;; defclass, followed by name, followed by the superclass list, ;; defclass, followed by name, followed by the superclass list,
@ -506,7 +506,7 @@ nil ; for false - and the empty list
; Direct superclasses: STANDARD-OBJECT ; Direct superclasses: STANDARD-OBJECT
; Direct subclasses: UNICYCLE, BICYCLE, CANOE ; Direct subclasses: UNICYCLE, BICYCLE, CANOE
; Not yet finalized. ; Not yet finalized.
(defparameter *foo#\u03BBooo* nil) ; Direct slots: ; Direct slots:
; VELOCITY ; VELOCITY
; Readers: VELOCITY ; Readers: VELOCITY
; Writers: (SETF VELOCITY) ; Writers: (SETF VELOCITY)