Skip to content

Commit 16b2c54

Browse files
authored
Merge pull request #223 from knakaj/issue#220
fixes #220
2 parents a441b75 + b02d9fe commit 16b2c54

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pretext/IntroRecursion/TheThreeLawsofRecursion.ptx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
algorithm our primary data structure is a list, so we must focus our
3030
state-changing efforts on the list. Since the base case is a list of
3131
length 1, a natural progression toward the base case is to shorten the
32-
list. This is exactly what happens on line 5 of <xref ref="intro-recursion_calculatingthe-sumofa-listof-numbers"/> when we call <c>listsum</c> with a shorter list.</p>
32+
list. This is exactly what happens on line 5 of the ActiveCode in <xref ref="intro-recursion_calculating-the-sum-of-a-list-of-numbers"/> when we call <c>listsum</c> with a shorter list.</p>
3333
<p>The final law is that the algorithm must call itself. This is the very
3434
definition of recursion. Recursion is a confusing concept to many
3535
beginning programmers. As a novice programmer, you have learned that

0 commit comments

Comments
 (0)