diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2026-01-31 10:19:00 +0100 |
|---|---|---|
| committer | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2026-01-31 10:19:00 +0100 |
| commit | b1122284f1930b49d7a079c55344888fd0935626 (patch) | |
| tree | 086c35288480ea8b8f6dc1546ef7bd0aa2123270 /base | |
| parent | 0a05ff05a391673b7f9d095d76485706ba50e0bb (diff) | |
Fix #6197
Diffstat (limited to 'base')
| -rw-r--r-- | base/intrinsics/intrinsics.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/intrinsics/intrinsics.odin b/base/intrinsics/intrinsics.odin index 41a1ae1ee..2428e37b9 100644 --- a/base/intrinsics/intrinsics.odin +++ b/base/intrinsics/intrinsics.odin @@ -355,7 +355,7 @@ has_target_feature :: proc($test: $T) -> bool where type_is_string(T) || type_is // Utility Calls -concatentate :: proc(x, y: $T, z: ..T) -> T where type_is_array(T) || type_is_slice(T) --- +concatenate :: proc(x, y: $T, z: ..T) -> T where type_is_array(T) || type_is_slice(T) --- // Returns the value of the procedure where `x` must be a call expression procedure_of :: proc(x: $T) -> T where type_is_proc(T) --- |