8000 Merge pull request #181 from vishant-nambiar/fix/typo-in-caesar · d2038/javascript-exercises@fcb6a8c · GitHub
Skip to content

Commit fcb6a8c

Browse files
authored
Merge pull request TheOdinProject#181 from vishant-nambiar/fix/typo-in-caesar
Fixed typo in caesar cipher excersize
2 parents 3c9649b + ae9bcc1 commit fcb6a8c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

13_caesar/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ caesar('A', 1) // simply shifts the letter by 1: returns 'B'
1414

1515
the cipher should retain capitalization:
1616
```javascript
17-
caesar('Hey', 5) // returns 'Mjd;
17+
caesar('Hey', 5) // returns 'Mjd'
1818
```
1919

2020
should _not_ shift punctuation:

0 commit comments

Comments
 (0)
0