[fix] [#45] spy! docstring typo (@rafd)

This commit is contained in:
Peter Taoussanis 2025-01-22 05:13:00 +01:00
parent 7d4aed60d8
commit 35606d971d

View file

@ -31,10 +31,10 @@ Limitations:
Examples:
(spy! (+ 1 2)) ; %> {:kind :trace, :level :info, :run-form '(+ 1 2),
; :run-val 3, :run-nsecs <int>, :parent {:keys [id uid]}
; :msg "(+ 1 2) => 3" ...}
(spy! ::my-id (+ 1 2)) ; %> {... :id ::my-id ...}
(spy! (+ 1 2)) ; %> {:kind :trace, :level :info, :run-form '(+ 1 2),
; :run-val 3, :run-nsecs <int>, :parent {:keys [id uid]}
; :msg "(+ 1 2) => 3" ...}
(spy! :debug (+ 1 2)) ; %> {... :level :debug ...}
(spy!
{:let [x "x"] ; Available to `:data` and `:msg`
:data {:x x}