From 5e2d89dc8bb8644cd74140fe5b5fdbf3a771a053 Mon Sep 17 00:00:00 2001 From: wizard <112275929+famouswizard@users.noreply.github.com> Date: Wed, 15 Jan 2025 21:15:44 +0300 Subject: [PATCH] fix: Remove unnecessary semicolon after while let block Update complex_input.cairo --- examples/complex_input.cairo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/complex_input.cairo b/examples/complex_input.cairo index fa02994c16a..1e4feba2bd4 100644 --- a/examples/complex_input.cairo +++ b/examples/complex_input.cairo @@ -17,7 +17,7 @@ fn complex_input( r += a_input.val; while let Option::Some(x) = a_input.arr.pop_front() { r += x; - }; + } while let Option::Some(mut a) = a_arr_input.pop_front() { r += a.val; while let Option::Some(x) = a.arr.pop_front() {