mirror of
https://github.com/sigmasternchen/gleam-community-maths
synced 2025-03-15 07:59:01 +00:00
fix: small typo on incomplete_gamma error
This commit is contained in:
parent
17f32fc5fb
commit
72d0500dc4
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue