diff --git a/src/gleam_community/maths/special.gleam b/src/gleam_community/maths/special.gleam index 12e2f87..318511d 100644 --- a/src/gleam_community/maths/special.gleam +++ b/src/gleam_community/maths/special.gleam @@ -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 } }