(doc update-vals)
-------------------------
clojure.core/update-vals
([m f])
m f => {k (f v) ...}
Given a map m and a function f of 1-argument, returns a new map where the keys of m
are mapped to result of applying f to the corresponding values of m.
说 "...返回一个新的映射,其中 m 的 >>>keys<<< 映射到...". 应该是 "values",而不是 "keys。" 很可能是从 update-keys 文档字符串中剪切/粘贴保留的。