diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2022-05-11 13:28:12 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-05-11 13:28:12 +0200 |
| commit | ae1f5d21816928c976b44fd562fa4745b1ee2223 (patch) | |
| tree | b39ff6758931d67a458dc1fd7bae5e853ee40306 /core/thread | |
| parent | b4df272eb5ca8b43a47ad0f70dff19dc98563642 (diff) | |
| parent | d48d3bfa87f8f944c7bb96a1efe298beaaa9c1cf (diff) | |
Merge pull request #1778 from Thimilius/fix-join_multiple-typo
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) } |