Skip to content

Commit dd67c0a

Browse files
glennjiHiD
authored andcommitted
fix broken jikiscript concept links in the bootcamp
1 parent 0258ebf commit dd67c0a

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

bootcamp_content/projects/maze/exercises/turn-around/introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ It should simply call `turn_right()` (or `turn_left()`) twice.
1818

1919
Then use that function in the solution in the final else statement.
2020

21-
If you don't remember how to create functions, check this [Concept Page](/bootcamp/concepts/functions-defining).
21+
If you don't remember how to create functions, check this [Concept Page](/bootcamp/concepts/jikiscript/functions-defining).

bootcamp_content/projects/number-puzzles/exercises/even-or-odd/introduction.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ It should have one input that expects a _number_. It should return a _string_ sp
1010

1111
To approach this problem, think about what it is that actually makes a number odd or even.
1212

13-
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.
13+
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.
1414

1515
## Hints
1616

@@ -23,6 +23,6 @@ You probably remember from school that a remainder is what’s left over when yo
2323

2424
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.
2525

26-
So to solve this exercise, you might like to use the **[remainder operator](https://exercism.org/bootcamp/concepts/numbers)**.
26+
So to solve this exercise, you might like to use the **[remainder operator](/bootcamp/concepts/jikiscript/numbers)**.
2727

2828
</details>

test/repos/bootcamp_content/projects/numbers/exercises/even-or-odd/introduction.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ It should have one input that expects a _number_. It should return a _string_ sp
1010

1111
To approach this problem, think about what it is that actually makes a number odd or even.
1212

13-
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.
13+
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.
1414

1515
## Bonus Task
1616

@@ -27,6 +27,6 @@ You probably remember from school that a remainder is what’s left over when yo
2727

2828
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.
2929

30-
So to solve this exercise, you might like to use the **[remainder operator](https://exercism.org/bootcamp/concepts/numbers)**.
30+
So to solve this exercise, you might like to use the **[remainder operator](/bootcamp/concepts/jikiscript/numbers)**.
3131

3232
</details>

0 commit comments

Comments
 (0)