diff options
author | 2022-05-09 14:38:54 +0200 | |
---|---|---|
committer | 2022-05-09 14:38:54 +0200 | |
commit | 9755e51fe216e5e25c56417152e70cb5bce26b11 (patch) | |
tree | d4d59eed8bc6d4161d5b3957920e732185117d87 /src/tools/encryption/index.ts | |
parent | 0b0cbd55c3809ded2eedfa0b2238bc950b01516a (diff) | |
download | it-tools-9755e51fe216e5e25c56417152e70cb5bce26b11.tar.gz it-tools-9755e51fe216e5e25c56417152e70cb5bce26b11.tar.zst it-tools-9755e51fe216e5e25c56417152e70cb5bce26b11.zip |
fix(typo): misspelings
Diffstat (limited to 'src/tools/encryption/index.ts')
-rw-r--r-- | src/tools/encryption/index.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/encryption/index.ts b/src/tools/encryption/index.ts index 1adef2b..2bb7c74 100644 --- a/src/tools/encryption/index.ts +++ b/src/tools/encryption/index.ts @@ -5,7 +5,7 @@ export const tool: ITool = { name: 'Encrypt / decrypt text', path: '/encryption', description: 'Encrypt and decrypt text clear text using crypto algorithm like AES, TripleDES, Rabbit or RC4.', - keywords: ['cypher', 'uncypher', 'text', 'AES', 'TripleDES', 'Rabbit', 'RC4'], + keywords: ['cypher', 'encipher', 'text', 'AES', 'TripleDES', 'Rabbit', 'RC4'], component: () => import('./encryption.vue'), icon: Lock, redirectFrom: ['/cypher'], |