We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc8170f commit 73a49c5Copy full SHA for 73a49c5
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