Skip to content

Commit

Permalink
exercises: docs: fix admonitions
Browse files Browse the repository at this point in the history
The commit [1] that changed admonitions back to tildes was incomplete.

[1] 3369e5e, 2023-09-21, "exercises: docs: change admonitions to use 4 tildes again"
  • Loading branch information
ee7 committed Oct 20, 2023
1 parent 1523e8b commit 7af8825
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion exercises/practice/binary-search/.docs/instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ It allows us to quickly narrow down the possible locations of our item until we

~~~~exercism/caution
Binary search only works when a list has been sorted.
```
~~~~

The algorithm looks like this:

Expand Down
2 changes: 1 addition & 1 deletion exercises/practice/linked-list/.docs/instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ In a **doubly linked list** each node links to both the node that comes before,
If you want to dig deeper into linked lists, check out [this article][intro-linked-list] that explains it using nice drawings.
[intro-linked-list]: https://medium.com/basecs/whats-a-linked-list-anyway-part-1-d8b7e6508b9d
```
~~~~
2 changes: 1 addition & 1 deletion exercises/practice/pangram/.docs/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ Pangram comes from Greek, παν γράμμα, pan gramma, which means "every le
The best known English pangram is:
> The quick brown fox jumps over the lazy dog.
```
~~~~
2 changes: 1 addition & 1 deletion exercises/practice/rna-transcription/.docs/instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ Given a DNA strand, its transcribed RNA strand is formed by replacing each nucle

~~~~exercism/note
If you want to look at how the inputs and outputs are structured, take a look at the examples in the test suite.
```
~~~~
2 changes: 1 addition & 1 deletion exercises/practice/rna-transcription/.docs/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ But if you can create a very specific molecule (called a micro-RNA), it can prev
This technique is called [RNA Interference][rnai].
[rnai]: https://admin.acceleratingscience.com/ask-a-scientist/what-is-rnai/
```
~~~~
2 changes: 1 addition & 1 deletion exercises/practice/secret-handshake/.docs/instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,4 @@ jump, double blink
If you aren't sure what binary is or how it works, check out [this binary tutorial][intro-to-binary].
[intro-to-binary]: https://medium.com/basecs/bits-bytes-building-with-binary-13cb4289aafa
```
~~~~
2 changes: 1 addition & 1 deletion exercises/practice/sieve/.docs/instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ The tests don't check that you've implemented the algorithm, only that you've co
A good first test is to check that you do not use division or remainder operations.
[eratosthenes]: https://en.wikipedia.org/wiki/Sieve_of_Eratosthenes
```
~~~~

0 comments on commit 7af8825

Please sign in to comment.