Skip to content

Commit

Permalink
::reified -> ::instance
Browse files Browse the repository at this point in the history
  • Loading branch information
darkleaf committed Oct 23, 2024
1 parent 481c07d commit 71983f5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/darkleaf/di/core.clj
Original file line number Diff line number Diff line change
Expand Up @@ -669,11 +669,11 @@
(build [this _] this)
(demolish [_ _] nil))

(c/derive ::root ::reified)
(c/derive ::template ::reified)
(c/derive ::service ::reified)
(c/derive ::root ::instance)
(c/derive ::template ::instance)
(c/derive ::service ::instance)

(defmethod print-method ::reified [o ^Writer w]
(defmethod print-method ::instance [o ^Writer w]
(.write w "#")
(.write w (-> o type symbol str))
(.write w " ")
Expand Down

0 comments on commit 71983f5

Please sign in to comment.