only use eqlIgnoreCase for RobotStore

This commit is contained in:
Muki Kiboigo
2026-02-05 08:02:35 -08:00
parent a7095d7dec
commit 34067a1d70

View File

@@ -52,7 +52,6 @@ pub const RobotStore = struct {
} }
pub fn eql(_: Context, a: []const u8, b: []const u8) bool { pub fn eql(_: Context, a: []const u8, b: []const u8) bool {
if (a.len != b.len) return false;
return std.ascii.eqlIgnoreCase(a, b); return std.ascii.eqlIgnoreCase(a, b);
} }
}, 80); }, 80);