diff --git a/docs/_posts/0000-02-04-ci-exercise.md b/docs/_posts/0000-02-04-ci-exercise.md index 14959bc..56f28d7 100644 --- a/docs/_posts/0000-02-04-ci-exercise.md +++ b/docs/_posts/0000-02-04-ci-exercise.md @@ -96,7 +96,7 @@ Note: Need to pull before you can push. ## Exercise Part 4: Make it pass -* Implement code to make **_only the petrol tests_** pass (see Story 1) +* Implement code to make **_only the petrol tests_** pass (see [Story 1](https://github.com/MCR-Digital/apprentice-boot-camp-fundamentals-3/tree/master/exercises#story-1)) * ___***Do not change ‘DummyTaxCalculator’***___—write your own implementation (e.g. ‘DefaultTaxCalculator’)* * Try to ___***keep your build green***___ * ___***Do not change the tests***___ (except to introduce your new calculator) diff --git a/docs/_posts/0000-04-02-branching-exercise.md b/docs/_posts/0000-04-02-branching-exercise.md index 4b1a35d..a4f180f 100644 --- a/docs/_posts/0000-04-02-branching-exercise.md +++ b/docs/_posts/0000-04-02-branching-exercise.md @@ -53,8 +53,8 @@ git remote set-url origin https://github.com/[USER]/apprentice-boot-camp-fundame * Create two branches based on the same start point * `git checkout -b story_2` * `git checkout -b story_3` -* One person enables Story 2 tests & implements -* Other person enables Story 3 tests & implements +* One person enables Story 2 tests & implements [Story 2](https://github.com/MCR-Digital/apprentice-boot-camp-fundamentals-3/tree/master/exercises#story-2) +* Other person enables Story 3 tests & implements [Story 3](https://github.com/MCR-Digital/apprentice-boot-camp-fundamentals-3/tree/master/exercises#story-3) * Both add to your TaxCalculator implementation with regular commits, ___***BOTH CHANGE THE SAME FILE***___ * Merge branches back to master one by one * Use a GitHub PR or merge on the command line diff --git a/docs/_posts/0000-06-02-trunk-exercise.md b/docs/_posts/0000-06-02-trunk-exercise.md index 8b34c44..760c83a 100644 --- a/docs/_posts/0000-06-02-trunk-exercise.md +++ b/docs/_posts/0000-06-02-trunk-exercise.md @@ -3,8 +3,8 @@ * Work in pairs - ___***SHARING THE SAME GIT REPOSITORY***___ * Implement your own feature toggle -* One person implements Story 4 - After the first year -* One person implements Story 5 - Expensive vehicles after the first year +* One person implements [Story 4](https://github.com/MCR-Digital/apprentice-boot-camp-fundamentals-3/tree/master/exercises#story-4) - After the first year +* One person implements [Story 5](https://github.com/MCR-Digital/apprentice-boot-camp-fundamentals-3/tree/master/exercises#story-5) - Expensive vehicles after the first year * Leave toggles off so that rules are not applied yet * Tests need to pass—turn the toggle on in your tests * Turn the new features on one at a time