diff options
| author | strager <strager.nds@gmail.com> | 2021-09-21 23:02:15 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-09-21 23:02:15 -0700 |
| commit | 31daf80aea8db014cfccceee8097e53ffa46da07 (patch) | |
| tree | 63c13585a237bc1ae9c7d4e66aba4879c51f45be | |
| parent | 76fa037ca714e7031fe66590d64a93954383488c (diff) | |
Fix indentation typo
| -rw-r--r-- | examples/demo/demo.odin | 2 |
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) |