Skip to content

Commit

Permalink
link to from arrays
Browse files Browse the repository at this point in the history
  • Loading branch information
quii committed Mar 16, 2018
1 parent 14f0d92 commit 78555c0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion arrays/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Arrays allow you to store multiple elements of the same type in a variable in a particular order.

When you have an array, it is very common to have to iterate over them. So let's use our new-found knowledge of `for` to make a `Sum` function. `Sum` will take an array of numbers and return the total.
When you have an array, it is very common to have to iterate over them. So let's use [our new-found knowledge of `for`](../for) to make a `Sum` function. `Sum` will take an array of numbers and return the total.

Let's use our TDD skills

Expand Down
2 changes: 1 addition & 1 deletion for/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Let's write a test for a function that repeats a character 5 times.

There's nothing new so far, so try and write it yourself for practice.

## 1. Write the test first
## Write the test first

```go
package main
Expand Down

0 comments on commit 78555c0

Please sign in to comment.