Skip to content

Commit 2c2f8a4

Browse files
authored
05-loop.md: fix broken URLs (#984)
Closes #968
1 parent 06bb720 commit 2c2f8a4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

_episodes/05-loop.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ IndexError: list index out of range
101101
~~~
102102
{: .error}
103103

104-
Here's a better approach: a [for loop]({{ page.root }}/reference/#for-loop)
104+
Here's a better approach: a [for loop]({{ page.root }}/reference.html#for-loop)
105105

106106
~~~
107107
odds = [1, 3, 5, 7]
@@ -376,7 +376,7 @@ so we should always use it when we can.
376376
377377
> ## Computing the Value of a Polynomial
378378
>
379-
> The built-in function `enumerate` takes a sequence (e.g. a [list]({{ page.root }}/05-lists/)) and
379+
> The built-in function `enumerate` takes a sequence (e.g. a [list]({{ page.root }}/04-lists/)) and
380380
> generates a new sequence of the same length. Each element of the new sequence is a pair composed
381381
> of the index (0, 1, 2,...) and the value from the original sequence:
382382
>

0 commit comments

Comments
 (0)