diff --git a/test_programs/noir_test_success/bounded_vec/src/main.nr b/test_programs/noir_test_success/bounded_vec/src/main.nr index cb9879b1c9e..0ad5840ba32 100644 --- a/test_programs/noir_test_success/bounded_vec/src/main.nr +++ b/test_programs/noir_test_success/bounded_vec/src/main.nr @@ -20,7 +20,7 @@ fn good() -> BoundedVec { fn bad() { // Error: Type annotation needed - // The compiller can't infer `MaxLen` from this code. + // The compiler can't infer `MaxLen` from this code. let mut v3 = BoundedVec::new(); v3.push(5); }