From f220f2caca3d7c35fa58aa15ce781d2a1c4e6bff Mon Sep 17 00:00:00 2001 From: connnnal <216976529+connnnal@users.noreply.github.com> Date: Tue, 16 Sep 2025 10:22:02 +0100 Subject: [PATCH] Typo for `type_equal_proc` --- intrinsics.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/intrinsics.odin b/intrinsics.odin index 20f9359a6b..34ce76c29e 100644 --- a/intrinsics.odin +++ b/intrinsics.odin @@ -330,7 +330,7 @@ intrinsics_table := []Builtin{ {name = "type_field_index_of", kind = "b", type = "proc($T: typeid, $name: string) -> uintptr"}, {name = "type_equal_proc", kind = "b", type = "proc($T: typeid) -> (equal: proc \"contextless\" (rawptr, rawptr) -> bool) where type_is_comparable(T)", - comment = "Returns the underlying procedure that is used to compare pointers to two values of the same time together. This is used by the `map` type and general complicated comparisons.", + comment = "Returns the underlying procedure that is used to compare pointers to two values of the same type together. This is used by the `map` type and general complicated comparisons.", }, {name = "type_hasher_proc", kind = "b", type = "proc($T: typeid) -> (hasher: proc \"contextless\" (data: rawptr, seed: uintptr) -> uintptr) where type_is_comparable(T)", comment = "Returns the underlying procedure that is used to hash a pointer to a value used by the `map` type.",