We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76b9ace commit 408dc13Copy full SHA for 408dc13
src/_Classics_/caeser_cipher/index.js
@@ -4,7 +4,7 @@
4
* @param {Number} num
5
*/
6
7
-function caeserCipher(str, num) {
+function caesarCipher(str, num) {
8
const lowerCaseString = str.toLowerCase();
9
const alphabets = 'abcdefghijklmnopqrstuvwxyz'.split('');
10
const totalAlphabets = alphabets.length;
0 commit comments