Skip to content

Commit

Permalink
Fixing the code in README.
Browse files Browse the repository at this point in the history
  • Loading branch information
hanjos committed Nov 16, 2023
1 parent 4530bbf commit f1af156
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ The end result should look something like this:
; creates a function which calls parse-log-entry with :user/skip-entry
; as an available restart. Any entries which return 'skip-entry will
; be skipped
(comp (map (c/with-fn parse-log-entry
{::skip-entry (fn [] 'skip-entry)}))
(comp (map (c/with-fn {::skip-entry (fn [] 'skip-entry)}
parse-log-entry))
(filter #(not= % 'skip-entry))))

(defn analyze-logs [& args]
Expand Down

0 comments on commit f1af156

Please sign in to comment.