From dc9a95796afbd81243c5e9521935ca4725b3cbe9 Mon Sep 17 00:00:00 2001 From: w4ffl35 Date: Tue, 20 Jun 2023 15:06:09 +0000 Subject: [PATCH] Update cipher.js adds some missing text to a comment --- src/cipher.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cipher.js b/src/cipher.js index f626b80..f506449 100644 --- a/src/cipher.js +++ b/src/cipher.js @@ -212,7 +212,7 @@ class Cipher { /* * decrypt(string: s): string * - * Given an encrypted string, this function will return a decrypt it + * Given an encrypted string, this function will return a decrypted version of it * using the _crypt function. * */ decrypt = (s) => this._crypt(s, this.alpha, this.encryptedAlpha)