aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThimilius <mail@thimilius.com>2022-05-11 13:12:07 +0200
committerThimilius <mail@thimilius.com>2022-05-11 13:12:56 +0200
commitd48d3bfa87f8f944c7bb96a1efe298beaaa9c1cf (patch)
tree29226294da96aa266637cccb94b403c3f0e93f4b
parent8559790bd8e9e69187566ab3fa7855bbba2e7ec3 (diff)
Fix join_multiple typo
-rw-r--r--core/thread/thread.odin2
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)
}