Skip to content

Commit

Permalink
Fixed broken links to other episodes (#485)
Browse files Browse the repository at this point in the history
* Fixed wrong description of example for complex numbers

* fixed broken links to other episodes

Co-authored-by: Johannes Schmölder <johannes.schmoelder@fau.de>
  • Loading branch information
schmoelder and Johannes Schmölder committed Jun 30, 2020
1 parent 0d91c2a commit 3601e8e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion _episodes/03-types-conversion.md
Original file line number Diff line number Diff line change
Expand Up @@ -427,7 +427,7 @@ first is 2 and second is 5
>
> Python provides complex numbers,
> which are written as `1.0+2.0j`.
> If `val` is an imaginary number,
> If `val` is a complex number,
> its real and imaginary parts can be accessed using *dot notation*
> as `val.real` and `val.imag`.
>
Expand Down
2 changes: 1 addition & 1 deletion _episodes/06-libraries.md
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ cos(pi) is -1.0
> > {: .language-python}
> >
> > Note that this function returns a list of values. We will learn about
> > lists in [episode 11]({% link _episodes/11-lists.md %}).
> > lists in [episode 11]({{ page.root }}/11-lists/).
> >
> > There's also other functions you could use, but with more convoluted
> > code as a result.
Expand Down
2 changes: 1 addition & 1 deletion _episodes/11-lists.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ primes after removing last item: [2, 3, 5, 7]
* Use `[]` on its own to represent a list that doesn't contain any values.
* "The zero of lists."
* Helpful as a starting point for collecting values
(which we will see in the [next episode]({% link _episodes/12-for-loops.md %}).
(which we will see in the [next episode]({{ page.root }}/12-for-loops/).

## Lists may contain values of different types.

Expand Down

0 comments on commit 3601e8e

Please sign in to comment.