8000 Merge pull request #181 from vishant-nambiar/fix/typo-in-caesar · urenoj/javascript-exercises@0c5601e · GitHub
[go: up one dir, main page]

Skip to content

Commit 0c5601e

Browse files
authored
Merge pull request TheOdinProject#181 from vishant-nambiar/fix/typo-in-caesar
Fixed typo in caesar cipher excersize
2 parents 137636a + cb083f5 commit 0c5601e

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