Browse Source

Merge pull request #1189 from strager/patch-1

Fix indentation typo
Jeroen van Rijn 4 năm trước cách đây
mục cha
commit
0201fa3fbb
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      examples/demo/demo.odin

+ 1 - 1
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)