From f71b41010ac9b1077ad2bac03bf7c225df76ec94 Mon Sep 17 00:00:00 2001 From: Richard Feldman Date: Mon, 17 Nov 2025 21:43:58 -0500 Subject: [PATCH] Remove unnecessary comments --- src/canonicalize/Can.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/canonicalize/Can.zig b/src/canonicalize/Can.zig index 592d94af32..db4a48e125 100644 --- a/src/canonicalize/Can.zig +++ b/src/canonicalize/Can.zig @@ -321,7 +321,7 @@ pub fn setupAutoImportedBuiltinTypes( try current_scope.type_bindings.put(gpa, type_ident, Scope.TypeBinding{ .external_nominal = .{ - .module_ident = builtin_ident, // Module is "Builtin", not the type name + .module_ident = builtin_ident, .original_ident = type_ident, .target_node_idx = target_node_idx, .import_idx = builtin_import_idx, @@ -338,7 +338,7 @@ pub fn setupAutoImportedBuiltinTypes( try current_scope.type_bindings.put(gpa, type_ident, Scope.TypeBinding{ .external_nominal = .{ - .module_ident = builtin_ident, // Module is "Builtin", not the type name + .module_ident = builtin_ident, .original_ident = type_ident, .target_node_idx = null, .import_idx = builtin_import_idx,