aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--examples/demo/demo.odin2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/demo/demo.odin b/examples/demo/demo.odin
index b3471fe87..a035a0f5e 100644
--- a/examples/demo/demo.odin
+++ b/examples/demo/demo.odin
@@ -1109,7 +1109,7 @@ threading_example :: proc() {
{ // Basic Threads
fmt.println("\n## Basic Threads")
- worker_proc :: proc(t: ^thread.Thread) {
+ worker_proc :: proc(t: ^thread.Thread) {
for iteration in 1..=5 {
fmt.printf("Thread %d is on iteration %d\n", t.user_index, iteration)
fmt.printf("`%s`: iteration %d\n", prefix_table[t.user_index], iteration)