From 7109e5f3fdc73dda80dcdabb8855ca822449bad1 Mon Sep 17 00:00:00 2001 From: Richard Feldman Date: Fri, 15 Aug 2025 15:12:54 -0400 Subject: [PATCH] Delete an unnecessary comment --- src/check/Check.zig | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/check/Check.zig b/src/check/Check.zig index 0c71cec649..c566053c71 100644 --- a/src/check/Check.zig +++ b/src/check/Check.zig @@ -1406,8 +1406,6 @@ fn checkLambdaWithAnno( } // STEP 2: Check the lambda body with expected return type - // This is the key improvement - we pass the expected return type down - // so that numeric literals and nested expressions get properly constrained const is_effectful = if (expected_return_type) |expected_ret| try self.checkExprWithExpected(lambda.body, expected_ret) else