fix: small typo on incomplete_gamma error

This commit is contained in:
Eduardo Farinati 2024-03-16 12:56:23 -03:00 committed by GitHub
parent 17f32fc5fb
commit 72d0500dc4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -174,7 +174,7 @@ pub fn incomplete_gamma(a: Float, x: Float) -> Result(Float, String) {
}
False ->
"Invlaid input argument: a <= 0 or x < 0. Valid input is a > 0 and x >= 0."
"Invalid input argument: a <= 0 or x < 0. Valid input is a > 0 and x >= 0."
|> Error
}
}