mirror of
https://github.com/odin-lang/Odin.git
synced 2026-06-06 10:44:06 +00:00
Fix typo
This commit is contained in:
@@ -133,7 +133,7 @@ has_suffix :: proc(array: $T/[]$E, needle: T) -> bool where intrinsics.type_is_c
|
||||
return false;
|
||||
}
|
||||
|
||||
fill :: proc(array: $T/[]$E, value: T) {
|
||||
fill :: proc(array: $T/[]$E, value: E) {
|
||||
for _, i in array {
|
||||
array[i] = value;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user