Skip to content

Commit 855113d

Browse files
authored
fix #66
1 parent d80ad59 commit 855113d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/loops-and-recursion.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Looping is an incredibly basic and fundamental programming construct which you will notice we have barely used at all so far. Or at least, we haven't used many explicit loops.
33

44
!!! Note "Terminology"
5-
The type of looping over items in a collection as provided by *for* and *while* loops is sometimes referred to as **scalar looping**. Other types of looping in APL might, for example, process each row of a matrix in turn but process whole rows at a time. In contrast, [each `¨`](/Nested/#each-a-primitive-for-explicit-loops) is a mechanism for looping over every item of an array (the [scalars](/Array model/#cells-and-axes)); its operand function can see arrays nested within the scalars.
5+
The type of looping over items in a collection as provided by *for* and *while* loops is sometimes referred to as **scalar looping**. Other types of looping in APL might, for example, process each row of a matrix in turn but process whole rows at a time. In contrast, [each `¨`](./multidimensional-and-nested-arrays.md#arrays-have-rank-and-depth) is a mechanism for looping over every item of an array (the [scalars](./multidimensional-and-nested-arrays.md#arrays-are-made-of-scalars)); its operand function can see arrays nested within the scalars.
66

77
## An introduction to an introduction to an introduction to an introduction to an int...
88

0 commit comments

Comments
 (0)