From 78555c02d570b0d2e5d27a06a5f363c4ff71d35c Mon Sep 17 00:00:00 2001 From: Chris James Date: Fri, 16 Mar 2018 15:00:44 +0000 Subject: [PATCH] link to from arrays --- arrays/readme.md | 2 +- for/readme.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/arrays/readme.md b/arrays/readme.md index a35d845e7..7a19b7b58 100644 --- a/arrays/readme.md +++ b/arrays/readme.md @@ -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 diff --git a/for/readme.md b/for/readme.md index ae16e8062..d6ecd96bf 100644 --- a/for/readme.md +++ b/for/readme.md @@ -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