Merge pull request #181 from vishant-nambiar/fix/typo-in-caesar

Fixed typo in caesar cipher excersize
This commit is contained in:
Tatiana 2021-08-31 22:35:50 -07:00 committed by GitHub
commit 0c5601ebd4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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: