replaced semicolon with single quote in caesar
This commit is contained in:
parent
137636a425
commit
cb083f5511
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue