fixed the comment format

This commit is contained in:
Pushkar Sharma 2015-10-05 00:35:49 +05:30
parent fbd07f268c
commit 68fc9b5c1f

View File

@ -176,7 +176,7 @@ nil ; for false - and the empty list
*rover* ; => #S(DOG :NAME "rover" :BREED "collie" :AGE 5) *rover* ; => #S(DOG :NAME "rover" :BREED "collie" :AGE 5)
(dog-p *rover*) ; => true #| -p signifies "predicate". It's used to (dog-p *rover*) ; => true #| -p signifies "predicate". It's used to
check if *rover* is an instance of dog.|# check if *rover* is an instance of dog. |#
(dog-name *rover*) ; => "rover" (dog-name *rover*) ; => "rover"
;; Dog-p, make-dog, and dog-name are all created by defstruct! ;; Dog-p, make-dog, and dog-name are all created by defstruct!