replaced semicolon with single quote in caesar

This commit is contained in:
Vishant Nambiar 2021-08-29 19:43:34 +05:30
parent 137636a425
commit cb083f5511

View file

@ -14,7 +14,7 @@ caesar('A', 1) // simply shifts the letter by 1: returns 'B'
the cipher should retain capitalization:
```javascript
caesar('Hey', 5) // returns 'Mjd;
caesar('Hey', 5) // returns 'Mjd'
```
should _not_ shift punctuation: