Skip to content

Commit

Permalink
Merge pull request #2 from brown/fix-type-declarations
Browse files Browse the repository at this point in the history
Fix the type declarations for slots HISTID and REXID of class CONNECT…
  • Loading branch information
stacksmith committed Jan 21, 2024
2 parents 0aeda96 + 0f91f83 commit fc598bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions trivial-swank.lisp
Expand Up @@ -60,11 +60,11 @@
;history
(histid :accessor histid
:initform nil
:type fixnum
:type (or null fixnum)
:documentation "history-tracking id")
(rexid :accessor rexid
:initform nil
:type fixnum
:type (or null fixnum)
:documentation "last-processed rex id")

(socket :accessor socket
Expand Down

0 comments on commit fc598bb

Please sign in to comment.