diff options
Diffstat (limited to 'src/endpoint.lisp')
-rw-r--r-- | src/endpoint.lisp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/endpoint.lisp b/src/endpoint.lisp index 2d70aea..cb71658 100644 --- a/src/endpoint.lisp +++ b/src/endpoint.lisp @@ -134,10 +134,10 @@ endpoints are dispatching on which routes and methods.") :for initarg := (first (mop:slot-definition-initargs slotdef)) :for route-pos := (position initarg extractors :key #'extractor-arg) :when initarg - :do (format stream "~10@a : ~10a ~a~a~%" ;;"~10@a : ~a ~a~%" + :do (format stream "~10@a : ~10a ~a~a~%" initarg (or (mop:slot-definition-type slotdef) t) - (documentation slotdef t) + (or (documentation slotdef t) "") (if route-pos (format nil "(~:r in route)" (1+ route-pos)) "")))) |