fix: remove semicolon.

This commit is contained in:
NunoSempere 2023-05-24 22:39:16 -07:00
parent 0bdb94a2d4
commit c0e6b0677a

View File

@ -27,7 +27,7 @@ proc to(low: float, high: float): float =
let loglow = ln(low)
let loghigh = ln(high)
let logmean = (loglow + loghigh)/2
let logsigma = (loghigh - loglow) / (2.0 * normal95confidencePoint);
let logsigma = (loghigh - loglow) / (2.0 * normal95confidencePoint)
return lognormal(logmean, logsigma)
## echo ur_normal()