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
1 changed files with 1 additions and 1 deletions

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: