Skip to content

Commit 73a49c5

Browse files
committedSep 8, 2019
--fix: spell fix
1 parent fc8170f commit 73a49c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/_Classics_/caeser_cipher/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* @param {Number} num
55
*/
66

7-
function caeserCipher(str, num) {
7+
function caesarCipher(str, num) {
88
const lowerCaseString = str.toLowerCase();
99
const alphabets = 'abcdefghijklmnopqrstuvwxyz'.split('');
1010
const totalAlphabets = alphabets.length;

0 commit comments

Comments
 (0)