Skip to content

Commit

Permalink
Fix links to code examples in repo (quii#689)
Browse files Browse the repository at this point in the history
  • Loading branch information
ruthmoog authored Jul 21, 2023
1 parent 9cc6360 commit 2643fa4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions math.md
Original file line number Diff line number Diff line change
Expand Up @@ -1142,7 +1142,7 @@ func main() {
}
```

This is what [things should look like now](https://github.com/quii/learn-go-with-tests/blob/main/math/v7b/clockface).
This is what [things should look like now](https://github.com/quii/learn-go-with-tests/tree/main/math/v7b/clockface).

And we can write a test for another time following the same pattern, but not
before...
Expand Down Expand Up @@ -1269,7 +1269,7 @@ func containsLine(l Line, ls []Line) bool {
}
```

Here's what [it looks like](https://github.com/quii/learn-go-with-tests/blob/main/math/v7c/clockface)
Here's what [it looks like](https://github.com/quii/learn-go-with-tests/tree/main/math/v7c/clockface)

Now _that's_ what I call an acceptance test!

Expand Down Expand Up @@ -1431,7 +1431,7 @@ PASS
ok clockface 0.007s
```

Nice and easy. This is what things [look like now](https://github.com/quii/learn-go-with-tests/blob/main/math/v8/clockface/clockface_acceptance_test.go)
Nice and easy. This is what things [look like now](https://github.com/quii/learn-go-with-tests/tree/main/math/v8/clockface/clockface_acceptance_test.go)

### Repeat for new requirements

Expand Down

0 comments on commit 2643fa4

Please sign in to comment.