Skip to content

Commit

Permalink
Convert backtick (`) admonition fences to tildes (~).
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikSchierboom committed Sep 27, 2023
1 parent 82ac464 commit 99b13bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions exercises/practice/rational-numbers/.docs/instructions.md
Expand Up @@ -2,11 +2,11 @@

A rational number is defined as the quotient of two integers `a` and `b`, called the numerator and denominator, respectively, where `b != 0`.

```exercism/note
~~~~exercism/note
Note that mathematically, the denominator can't be zero.
However in many implementations of rational numbers, you will find that the denominator is allowed to be zero with behaviour similar to positive or negative infinity in floating point numbers.
In those cases, the denominator and numerator generally still can't both be zero at once.
```
~~~~

The absolute value `|r|` of the rational number `r = a/b` is equal to `|a|/|b|`.

Expand Down

0 comments on commit 99b13bc

Please sign in to comment.