Skip to content

Commit 1e71b8a

Browse files
another typo (#3493)
1 parent 108222b commit 1e71b8a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

exercises/practice/atbash-cipher/.approaches/introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def encode(text: str):
2222
def decode(text: str):
2323
return "".join(chr.lower() for chr in text if chr.isalnum()).translate(ENCODING)
2424
```
25-
Read more on this [approach here][approach-seperate-functions].
25+
Read more on this [approach here][approach-separate-functions].
2626

2727
## Approach: mono-function
2828
Notice that there the majority of the code is repetitive?

0 commit comments

Comments
 (0)