Skip to content

Commit dd115de

Browse files
matiasp95BethanyG
authored andcommitted
Adding missing double quotes
One of the examples was missing double quotes. (Approach: Str translate)
1 parent a77e005 commit dd115de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ The benefit of this approach is that it has no visible loop, making the code mor
7878
~~~~
7979

8080
```python
81-
AlPHABET = "abcdefghijklmnopqrstuvwxyz
81+
AlPHABET = "abcdefghijklmnopqrstuvwxyz"
8282

8383
def rotate(text, key):
8484
translator = AlPHABET[key:] + AlPHABET[:key]

0 commit comments

Comments
 (0)