diff options
| author | Thimilius <mail@thimilius.com> | 2022-05-11 13:12:07 +0200 |
|---|---|---|
| committer | Thimilius <mail@thimilius.com> | 2022-05-11 13:12:56 +0200 |
| commit | d48d3bfa87f8f944c7bb96a1efe298beaaa9c1cf (patch) | |
| tree | 29226294da96aa266637cccb94b403c3f0e93f4b /core/thread | |
| parent | 8559790bd8e9e69187566ab3fa7855bbba2e7ec3 (diff) | |
Fix join_multiple typo
Diffstat (limited to 'core/thread')
| -rw-r--r-- | core/thread/thread.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/thread/thread.odin b/core/thread/thread.odin index d1b95a2fd..90230ae75 100644 --- a/core/thread/thread.odin +++ b/core/thread/thread.odin @@ -53,7 +53,7 @@ join :: proc(thread: ^Thread) { } -join_mulitple :: proc(threads: ..^Thread) { +join_multiple :: proc(threads: ..^Thread) { _join_multiple(..threads) } |