summaryrefslogtreecommitdiffhomepage
path: root/common-lisp.html.markdown
diff options
context:
space:
mode:
authorPushkar Sharma <thepsguy@icloud.com>2015-10-05 00:35:49 +0530
committerPushkar Sharma <thepsguy@icloud.com>2015-10-05 00:35:49 +0530
commit68fc9b5c1f71adcbbbd53711e9a5692a8372b8cf (patch)
tree63be116a4a43f89f043249138984a73ee5decf49 /common-lisp.html.markdown
parentfbd07f268cd6e64c65912ccc27f2ec9e222ec536 (diff)
fixed the comment format
Diffstat (limited to 'common-lisp.html.markdown')
-rw-r--r--common-lisp.html.markdown2
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!