Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -839,7 +839,7 @@ This allows you to emit whatever values you wish for a given object.
Once again considering our `person` and `job` classes above, we can specialize a method for `jzon:write-value` on `job`:

```lisp
(defmethod jzon:write-value (writer (job job))
(defmethod jzon:write-value ((writer jzon:writer) (job job))
(cond
((string= (company job) "WISE")
(jzon:write-object writer
Expand Down