diff options
| -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) --- |