diff options
author | Teddy Wing | 2021-02-27 16:15:41 +0100 |
---|---|---|
committer | Teddy Wing | 2021-02-27 16:15:41 +0100 |
commit | 5b95c9f8eddb1054926f8feddbd9b2e4d4e32dbb (patch) | |
tree | 6188e2a8086c0cb1ff4c6899c4d6faefcbb19982 | |
parent | 49d8a4a1c065366744c45adb960ab9a8b4cd0f95 (diff) | |
download | extreload-5b95c9f8eddb1054926f8feddbd9b2e4d4e32dbb.tar.bz2 |
call-id: Add documentation
-rw-r--r-- | l/src/call-id.lisp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/l/src/call-id.lisp b/l/src/call-id.lisp index 40bcadc..a21e6ab 100644 --- a/l/src/call-id.lisp +++ b/l/src/call-id.lisp @@ -4,7 +4,9 @@ ((id :initform 0 :reader id - :documentation "Current call ID."))) + :documentation "Current call ID.")) + + (:documentation "An incrementing identifier.")) (defgeneric next-call-id (call-id) (:documentation "Increment the call ID and return the result.")) |