Formating and incorrect docstring position

Curse you Hy and your inversed do string
This commit is contained in:
Felisp 2024-07-28 18:31:46 +02:00
parent 6391e115d1
commit 66b2b445df

View file

@ -69,9 +69,10 @@
{k (map-apply-defaults conf-val default-val)}
{k (nil?-else conf-val default-val)})))))
(defn fmap [f m]
(defn fmap
"Applies function [f] to every key and value in map [m]
Function signature should be (f [key value])."
[f m]
(into
(empty m)
(for [[key val] m]