Skip to content

Commit 408dc13

Browse files
committed
--fix: spell fix
1 parent 76b9ace commit 408dc13

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)