@@ -16,7 +16,7 @@ Input: `times`, `handler`.
1616
1717Output: Scratch statement block definition that is appended to the current script stack.
1818
19- * ` times: PrimitiveSource<number > ` - number of iterations
19+ * ` times: PrimitiveSource<HikkakuNumber > ` - number of iterations
2020* ` handler: () => void ` - body of the loop
2121
2222Example:
@@ -34,7 +34,7 @@ Input: `condition`, `handler`.
3434
3535Output: Scratch statement block definition that is appended to the current script stack.
3636
37- * ` condition: PrimitiveSource<boolean > `
37+ * ` condition: PrimitiveSource<HikkakuBool > `
3838* ` handler: () => void `
3939
4040Example:
@@ -52,7 +52,7 @@ Input: `condition`, `handler`.
5252
5353Output: Scratch statement block definition that is appended to the current script stack.
5454
55- * ` condition: PrimitiveSource<boolean > `
55+ * ` condition: PrimitiveSource<HikkakuBool > `
5656* ` handler: () => void `
5757
5858Example:
@@ -71,7 +71,7 @@ Input: `variable`, `value`, `handler`.
7171Output: Scratch statement block definition that is appended to the current script stack.
7272
7373* ` variable: VariableReference `
74- * ` value: PrimitiveSource<number > ` - upper bound
74+ * ` value: PrimitiveSource<HikkakuNumber > ` - upper bound
7575* ` handler: () => void `
7676
7777Example:
@@ -106,7 +106,7 @@ Input: `seconds`.
106106
107107Output: Scratch statement block definition that is appended to the current script stack.
108108
109- * ` seconds: PrimitiveSource<number > `
109+ * ` seconds: PrimitiveSource<HikkakuNumber > `
110110
111111Example:
112112``` ts
@@ -123,7 +123,7 @@ Input: `condition`.
123123
124124Output: Scratch statement block definition that is appended to the current script stack.
125125
126- * ` condition: PrimitiveSource<boolean > `
126+ * ` condition: PrimitiveSource<HikkakuBool > `
127127
128128Example:
129129``` ts
@@ -140,7 +140,7 @@ Input: `condition`, `handler`.
140140
141141Output: Scratch statement block definition that is appended to the current script stack.
142142
143- * ` condition: PrimitiveSource<boolean > `
143+ * ` condition: PrimitiveSource<HikkakuBool > `
144144* ` handler: () => void `
145145
146146Example:
@@ -158,7 +158,7 @@ Input: `condition`, `thenHandler`, `elseHandler`.
158158
159159Output: Scratch statement block definition that is appended to the current script stack.
160160
161- * ` condition: PrimitiveSource<boolean > `
161+ * ` condition: PrimitiveSource<HikkakuBool > `
162162* ` thenHandler: () => void `
163163* ` elseHandler: () => void `
164164
@@ -226,7 +226,7 @@ Input: `target`.
226226
227227Output: Scratch statement block definition that is appended to the current script stack.
228228
229- * ` target: PrimitiveSource<string > ` - string
229+ * ` target: PrimitiveSource<HikkakuString > ` - string
230230
231231Example:
232232``` ts
0 commit comments