Merge pull request #181 from vishant-nambiar/fix/typo-in-caesar
Fixed typo in caesar cipher excersize
This commit is contained in:
commit
0c5601ebd4
|
@ -14,7 +14,7 @@ caesar('A', 1) // simply shifts the letter by 1: returns 'B'
|
||||||
|
|
||||||
the cipher should retain capitalization:
|
the cipher should retain capitalization:
|
||||||
```javascript
|
```javascript
|
||||||
caesar('Hey', 5) // returns 'Mjd;
|
caesar('Hey', 5) // returns 'Mjd'
|
||||||
```
|
```
|
||||||
|
|
||||||
should _not_ shift punctuation:
|
should _not_ shift punctuation:
|
||||||
|
|
Loading…
Reference in New Issue