Skip to content

Commit 7331f4d

Browse files
authored
Merge pull request #60 from connnnal/type-equal-proc-typo
Typo for `type_equal_proc`
2 parents e89f5a0 + f220f2c commit 7331f4d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

intrinsics.odin

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ intrinsics_table := []Builtin{
330330
{name = "type_field_index_of", kind = "b", type = "proc($T: typeid, $name: string) -> uintptr"},
331331

332332
{name = "type_equal_proc", kind = "b", type = "proc($T: typeid) -> (equal: proc \"contextless\" (rawptr, rawptr) -> bool) where type_is_comparable(T)",
333-
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.",
333+
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.",
334334
},
335335
{name = "type_hasher_proc", kind = "b", type = "proc($T: typeid) -> (hasher: proc \"contextless\" (data: rawptr, seed: uintptr) -> uintptr) where type_is_comparable(T)",
336336
comment = "Returns the underlying procedure that is used to hash a pointer to a value used by the `map` type.",

0 commit comments

Comments
 (0)