diff --git a/bootcamp_content/projects/maze/exercises/turn-around/introduction.md b/bootcamp_content/projects/maze/exercises/turn-around/introduction.md index 03d1a60924..d1e2f5d6a4 100644 --- a/bootcamp_content/projects/maze/exercises/turn-around/introduction.md +++ b/bootcamp_content/projects/maze/exercises/turn-around/introduction.md @@ -18,4 +18,4 @@ It should simply call `turn_right()` (or `turn_left()`) twice. Then use that function in the solution in the final else statement. -If you don't remember how to create functions, check this [Concept Page](/bootcamp/concepts/functions-defining). +If you don't remember how to create functions, check this [Concept Page](/bootcamp/concepts/jikiscript/functions-defining). diff --git a/bootcamp_content/projects/number-puzzles/exercises/even-or-odd/introduction.md b/bootcamp_content/projects/number-puzzles/exercises/even-or-odd/introduction.md index 3443a63310..f1c35b04cf 100644 --- a/bootcamp_content/projects/number-puzzles/exercises/even-or-odd/introduction.md +++ b/bootcamp_content/projects/number-puzzles/exercises/even-or-odd/introduction.md @@ -10,7 +10,7 @@ It should have one input that expects a _number_. It should return a _string_ sp To approach this problem, think about what it is that actually makes a number odd or even. -Remember, that Jiki understands plus (`+`), minus (`-`), multiply (`*`), divide (`/`) and remainder (`%`). Check the [Numbers Concept](https://exercism.org/bootcamp/concepts/numbers) for a recap on how they work. +Remember, that Jiki understands plus (`+`), minus (`-`), multiply (`*`), divide (`/`) and remainder (`%`). Check the [Numbers Concept](/bootcamp/concepts/jikiscript/numbers) for a recap on how they work. ## Hints @@ -23,6 +23,6 @@ You probably remember from school that a remainder is what’s left over when yo For example, if you divide 7 by 3, you can fit two groups of 3 into 7 (since 3 + 3 = 6), but there’s 1 left over. That leftover 1 is the remainder. And that remainder makes it an odd number. -So to solve this exercise, you might like to use the **[remainder operator](https://exercism.org/bootcamp/concepts/numbers)**. +So to solve this exercise, you might like to use the **[remainder operator](/bootcamp/concepts/jikiscript/numbers)**. diff --git a/test/repos/bootcamp_content/projects/numbers/exercises/even-or-odd/introduction.md b/test/repos/bootcamp_content/projects/numbers/exercises/even-or-odd/introduction.md index 697599852d..fbaecc1e32 100644 --- a/test/repos/bootcamp_content/projects/numbers/exercises/even-or-odd/introduction.md +++ b/test/repos/bootcamp_content/projects/numbers/exercises/even-or-odd/introduction.md @@ -10,7 +10,7 @@ It should have one input that expects a _number_. It should return a _string_ sp To approach this problem, think about what it is that actually makes a number odd or even. -Remember, that Jiki understands plus (`+`), minus (`-`), multiply (`*`), divide (`/`) and remainder (`%`). Check the [Numbers Concept](https://exercism.org/bootcamp/concepts/numbers) for a recap on how they work. +Remember, that Jiki understands plus (`+`), minus (`-`), multiply (`*`), divide (`/`) and remainder (`%`). Check the [Numbers Concept](/bootcamp/concepts/jikiscript/numbers) for a recap on how they work. ## Bonus Task @@ -27,6 +27,6 @@ You probably remember from school that a remainder is what’s left over when yo For example, if you divide 7 by 3, you can fit two groups of 3 into 7 (since 3 + 3 = 6), but there’s 1 left over. That leftover 1 is the remainder. And that remainder makes it an odd number. -So to solve this exercise, you might like to use the **[remainder operator](https://exercism.org/bootcamp/concepts/numbers)**. +So to solve this exercise, you might like to use the **[remainder operator](/bootcamp/concepts/jikiscript/numbers)**.