Skip to content

Commit

Permalink
Fix link rendering (#3490)
Browse files Browse the repository at this point in the history
* typo

* another typo
  • Loading branch information
safwansamsudeen authored Aug 19, 2023
1 parent 1d8b11a commit 06ec554
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions exercises/practice/atbash-cipher/.approaches/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ For decoding, it's similar - clean up (which automatically joins the chunks) and

## Approach: separate functions
We use `str.maketrans` to create the encoding.
In `encode`, we use a [generator expression][generator expression] in `str.join`.
In `encode`, we use a [generator expression][generator-expression] in `str.join`.
```python
from string import ascii_lowercase
ENCODING = str.maketrans(ascii_lowercase, ascii_lowercase[::-1])
Expand Down Expand Up @@ -43,4 +43,4 @@ For more detail, [read here][approach-mono-function].

[approach-separate-functions]: https://exercism.org/tracks/python/exercises/atbash-cipher/approaches/separate-functions
[approach-mono-function]: https://exercism.org/tracks/python/exercises/atbash-cipher/approaches/mono-function
[generator expression]: https://www.programiz.com/python-programming/generator
[generator-expression]: https://www.programiz.com/python-programming/generator
5 changes: 4 additions & 1 deletion exercises/practice/robot-name/.approaches/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,7 @@ class Robot:
self.reset()
```

For more detail and different ways to implement this, [read here][approach-name-on-the-fly].
For more detail and different ways to implement this, [read here][approach-name-on-the-fly].

[approach-name-on-the-fly]: https://exercism.org/tracks/python/exercises/robot-name/approaches/name-on-the-fly
[approach-mass-name-generation]: https://exercism.org/tracks/python/exercises/robot-name/approaches/mass-name-generation

0 comments on commit 06ec554

Please sign in to comment.