From 72d0500dc4584698e587ecf5c16e48046669b3ed Mon Sep 17 00:00:00 2001 From: Eduardo Farinati Date: Sat, 16 Mar 2024 12:56:23 -0300 Subject: [PATCH] fix: small typo on incomplete_gamma error --- src/gleam_community/maths/special.gleam | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 } }