From 1c1a8449f765d4a550f17903eca404aaca2493e4 Mon Sep 17 00:00:00 2001 From: Renzo Banegas Date: Wed, 7 Aug 2024 20:38:40 -0300 Subject: [PATCH] fix: fix typo in comment --- src/hints/math/testLessThan.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hints/math/testLessThan.ts b/src/hints/math/testLessThan.ts index d48c0a55..0dddac49 100644 --- a/src/hints/math/testLessThan.ts +++ b/src/hints/math/testLessThan.ts @@ -26,7 +26,7 @@ export const testLessThanParser = z /** * TestLessThan hint * - * Store true at `dst` if value at `lhs` is stricty inferior to value at `rhs`. + * Store true at `dst` if value at `lhs` is strictly inferior to value at `rhs`. * Store false otherwise */ export type TestLessThan = z.infer;