diff options
author | Pushkar Sharma <thepsguy@icloud.com> | 2015-10-05 00:35:49 +0530 |
---|---|---|
committer | Pushkar Sharma <thepsguy@icloud.com> | 2015-10-05 00:35:49 +0530 |
commit | 68fc9b5c1f71adcbbbd53711e9a5692a8372b8cf (patch) | |
tree | 63be116a4a43f89f043249138984a73ee5decf49 | |
parent | fbd07f268cd6e64c65912ccc27f2ec9e222ec536 (diff) |
fixed the comment format
-rw-r--r-- | common-lisp.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common-lisp.html.markdown b/common-lisp.html.markdown index e3bb61cf..e0597e94 100644 --- a/common-lisp.html.markdown +++ b/common-lisp.html.markdown @@ -176,7 +176,7 @@ nil ; for false - and the empty list *rover* ; => #S(DOG :NAME "rover" :BREED "collie" :AGE 5) (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-p, make-dog, and dog-name are all created by defstruct! |