branch: elpa/cider commit 5bbbd8174cf0253ba767f9e1c32a020443d01fe0 Author: Bozhidar Batsov <bozhi...@batsov.dev> Commit: Bozhidar Batsov <bozhi...@batsov.dev>
[Docs] Tweak the pretty-printing page --- doc/modules/ROOT/pages/usage/pretty_printing.adoc | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/doc/modules/ROOT/pages/usage/pretty_printing.adoc b/doc/modules/ROOT/pages/usage/pretty_printing.adoc index aaa322d831..c7078a4a79 100644 --- a/doc/modules/ROOT/pages/usage/pretty_printing.adoc +++ b/doc/modules/ROOT/pages/usage/pretty_printing.adoc @@ -23,12 +23,15 @@ of data on top of fipp, but at a slight performance cost. * `zprint` to use https://github.com/kkinnear/zprint[zprint], a fast and flexible alternative to the libraries mentioned above. -IMPORTANT: For `fipp`, `puget`, and `zprint` printers to work, you need to add a +IMPORTANT: For `fipp`, `puget`, and `zprint` printers to work, you need to add the respective dependency in your project explicitly. Alternatively, `cider-print-fn` can be set to the namespace-qualified name of a -Clojure var whose function takes three arguments: the object to print, the -`java.io.PrintWriter` to print on, and a (possibly nil) map of options. +Clojure var whose function takes three arguments: + +* the object to print +* the `java.io.PrintWriter` to print on +* a (possibly `nil`) map of options. [source,lisp] ----