Skip to content

Commit

Permalink
🚑 Fix broken links in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
pmonks committed Oct 10, 2024
1 parent 68f2d2f commit b090ee0
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions src/progress/indeterminate.clj
Original file line number Diff line number Diff line change
Expand Up @@ -44,16 +44,18 @@
(= :active @s))

(defn print
"Schedules the given values for printing (via [clojure.core/print]), since
[clojure.core/print] and related output fns interfere with an active
indeterminate progress indicator.
"Schedules the given values for printing, since [clojure.core/print](https://clojuredocs.org/clojure.core/print)
and related output fns interfere with an active indeterminate progress
indicator.
Notes:
* output is emitted in between 'frames' of the progress indicator, so may not
appear immediately
* values are space delimited (as in [clojure.core/print]) - use
[clojure.core/str], [clojure.core/format], etc. for finer control
* values are space delimited as in [clojure.core/print](https://clojuredocs.org/clojure.core/print)
- use [clojure.core/str](https://clojuredocs.org/clojure.core/str),
[clojure.core/format](https://clojuredocs.org/clojure.core/format), etc. for
finer control
* no newlines are inserted - if message(s) are to appear on new lines the
caller needs to include `\\n` in the value(s)"
[& more]
Expand Down

0 comments on commit b090ee0

Please sign in to comment.