(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 的 >>>键<<< 映射到...”。这应该是“值”,而不是“键”。这很可能是从 update-keys 文档字符串中粘贴过来的遗留下来的。