瀏覽代碼

Fix indentation

flysand7 9 月之前
父節點
當前提交
d41c7d52e7
共有 1 個文件被更改,包括 6 次插入6 次删除
  1. 6 6
      core/simd/simd.odin

+ 6 - 6
core/simd/simd.odin

@@ -1660,7 +1660,7 @@ Graphical representation of the operation:
 	mask: | 1  | 0  | 1  | 0  |
 	      +-------------------+
 	        |         |
-			v         v
+	        v         v
 	      +-------------------+
 	vals: | v0 | v1 | v2 | v3 |
 	      +-------------------+
@@ -1958,7 +1958,7 @@ the picture represents the `indices` parameter:
 	idx:  |  0  |  3  |  1  |  1  |
 	      +-----+-----+-----+-----+
 	         ^     ^     ^     ^
-             |     |     |     |
+	         |     |     |     |
 	      +-----+-----+-----+-----+
 	res:  | 1.5 | 3.5 | 2.5 | 2.5 |
 	      +-----+-----+-----+-----+
@@ -2024,12 +2024,12 @@ the picture represents the `indices` parameter:
 	         |           |                  |     |
 	         |           |                  |     |
 	         |      .--- | ----------------'      |
-			 |     |     |     .-----------------'
+	         |     |     |     .-----------------'
 	      +-----+-----+-----+-----+
 	idx:  |  0  |  4  |  2  |  5  |
 	      +-----+-----+-----+-----+
 	         ^     ^     ^     ^
-             |     |     |     |
+	         |     |     |     |
 	      +-----+-----+-----+-----+
 	res:  |  1  |  5  |  3  |  6  |
 	      +-----+-----+-----+-----+
@@ -2090,12 +2090,12 @@ Graphically, the operation looks as follows. The `t` and `f` represent the
 	         |           |                        |           |
 	         |           |                        |           |
 	         |      .--- | ----------------------'            |
-			 |     |     |     .-----------------------------'
+	         |     |     |     .-----------------------------'
 	      +-----+-----+-----+-----+
 	cond: |  1  |  0  |  1  |  0  |
 	      +-----+-----+-----+-----+
 	         ^     ^     ^     ^
-             |     |     |     |
+	         |     |     |     |
 	      +-----+-----+-----+-----+
 	res:  |  1  |  5  |  3  |  6  |
 	      +-----+-----+-----+-----+