Fork me on GitHub
#clojure-dev
<
2021-11-27
>
quoll17:11:39

Sorry, I removed a message that I had meant to send to #cljs-dev. Fixed.

quoll17:11:19

There’s a typo in the doc for clojure.java.math/log1p. It https://github.com/clojure/clojure/blob/7697d5da77a319077e71343f76fa204327881de4/src/clj/clojure/java/math.clj#L471:

"Returns ln(1+x). For small values of x, log1p(x) is more accurate than
  log(1.0+x).
  If x is ##NaN or < -1 => ##NaN
  If x is ##Inf or ##-Inf or x => x
  See: "
It should say:
"Returns ln(1+x). For small values of x, log1p(x) is more accurate than
  log(1.0+x).
  If x is ##NaN or ##-Inf or < -1 => ##NaN
  If x is -1 => ##-Inf
  If x is ##Inf => ##Inf
  See: "

Alex Miller (Clojure team)00:11:10

For this (and anything else you find), can you put it on ask Clojure? I don't always catch everything on slack