From 7a883f62ec7f7956b4dc068041317577480a24fc Mon Sep 17 00:00:00 2001 From: NicklasXYZ <18580183+NicklasXYZ@users.noreply.github.com> Date: Mon, 9 Dec 2024 00:17:06 +0100 Subject: [PATCH] Fix typo --- test/gleam_community/sequences_test.gleam | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/gleam_community/sequences_test.gleam b/test/gleam_community/sequences_test.gleam index 27bb0a6..2e4ff20 100644 --- a/test/gleam_community/sequences_test.gleam +++ b/test/gleam_community/sequences_test.gleam @@ -107,7 +107,7 @@ pub fn list_linear_space_test() { |> should.be_true() // Check that when start == stop and steps > 0, then - // the value start/stop value is just repeated, since the + // the value (start/stop) is just repeated, since the // step increment will be 0 let assert Ok(linspace) = maths.linear_space(10.0, 10.0, 5, True) let assert Ok(result) = @@ -193,7 +193,7 @@ pub fn list_logarithmic_space_test() { |> should.be_true() // Check that when start == stop and steps > 0, then - // the value start/stop value is just repeated, since the + // the value (start/stop) is just repeated, since the // step increment will be 0 let assert Ok(logspace) = maths.logarithmic_space(5.0, 5.0, 5, True, 5.0) let assert Ok(result) = @@ -286,7 +286,7 @@ pub fn list_geometric_space_test() { |> should.be_true() // Check that when start == stop and steps > 0, then - // the value start/stop value is just repeated, since the + // the value (start/stop) is just repeated, since the // step increment will be 0 let assert Ok(logspace) = maths.geometric_space(5.0, 5.0, 5, True) let assert Ok(result) =