Skip to content

Commit 759452c

Browse files
and another typo
1 parent 08c2f71 commit 759452c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

content/learn.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ A more general version of this function, `Times` can be defined using recursion.
211211
Def Times (
212212
Let N number of repetitions;
213213
Def F function to repeat;
214-
Unless Zero? N ( F ; Times -- 1 N (F) );
214+
Unless Zero? N ( F ; Times - 1 N (F) );
215215
);
216216
217217
Times 5 (
@@ -225,7 +225,7 @@ Now you may see a small problem with this. If the user calls `Times` with a non-
225225
Def Times (
226226
Let N be Of (Integer?) number of repetitions;
227227
Def F function to repeat;
228-
Unless Zero? N ( F ; Times -- 1 N (F) );
228+
Unless Zero? N ( F ; Times - 1 N (F) );
229229
);
230230
```
231231

0 commit comments

Comments
 (0)