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