Skip to content

Commit

Permalink
Update cljdoc formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
olttwa committed Oct 20, 2023
1 parent 628321c commit 8bbc59e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/goose/client.clj
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@
`args-coll` : A sequential collection of args. Args must be represented as a
sequential collection too. This collection is iterated upon for creating Batch-Jobs.\\
Number of Jobs in a Batch is equal to the number of elements in args-coll.\\
Given values must be serializable by `ptaoussanis/nippy`.
Given values must be serializable by `ptaoussanis/nippy`.\\
*Example* : `[[1] [2] [:foo :bar] [{:some :map}]]`
### Usage
Expand Down
2 changes: 1 addition & 1 deletion src/goose/retry.clj
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
(* (rand-int 20) (inc retry-count))
(reduce * (repeat 4 retry-count)))) ; retry-count^4

(defn max-retries-reached?
(defn ^:no-doc max-retries-reached?
[{{:keys [retry-count]} :state
{:keys [max-retries]} :retry-opts}]
(>= retry-count max-retries))
Expand Down

0 comments on commit 8bbc59e

Please sign in to comment.