File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1919 [expected actual]
2020 (diff/diff expected actual))
2121
22- (defn printer
22+ (defn build- printer
2323 " Construct a Puget printer instance suitable for printing diffs.
2424
2525 Extra options are passed on to Puget. Extra type handlers can be provides as
2626 `:extra-handlers` (a map from symbol to function), or by
2727 using [[lambdaisland.deep-diff.printer/register-print-handler!]]"
2828 ([]
29- (printer {}))
29+ (build- printer {}))
3030 ([opts]
3131 (printer/puget-printer opts)))
3232
3636 Pretty print a diffed data structure, as obtained from [[diff]]. Optionally
3737 takes a Puget printer instance, see [[printer]]."
3838 ([diff]
39- (pretty-print diff (printer )))
39+ (pretty-print diff (build- printer )))
4040 ([diff printer]
4141 (-> diff
4242 (printer/format-doc printer)
You can’t perform that action at this time.
0 commit comments