aboutsummaryrefslogtreecommitdiff
path: root/src/tools/url-parser/index.ts
diff options
context:
space:
mode:
authorGravatar Corentin Thomasset <corentin.thomasset74@gmail.com> 2022-05-09 14:38:54 +0200
committerGravatar Corentin Thomasset <corentin.thomasset74@gmail.com> 2022-05-09 14:38:54 +0200
commit9755e51fe216e5e25c56417152e70cb5bce26b11 (patch)
treed4d59eed8bc6d4161d5b3957920e732185117d87 /src/tools/url-parser/index.ts
parent0b0cbd55c3809ded2eedfa0b2238bc950b01516a (diff)
downloadit-tools-9755e51fe216e5e25c56417152e70cb5bce26b11.tar.gz
it-tools-9755e51fe216e5e25c56417152e70cb5bce26b11.tar.zst
it-tools-9755e51fe216e5e25c56417152e70cb5bce26b11.zip
fix(typo): misspelings
Diffstat (limited to 'src/tools/url-parser/index.ts')
-rw-r--r--src/tools/url-parser/index.ts3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/tools/url-parser/index.ts b/src/tools/url-parser/index.ts
index 22359a6..1074765 100644
--- a/src/tools/url-parser/index.ts
+++ b/src/tools/url-parser/index.ts
@@ -4,8 +4,7 @@ import type { ITool } from './../Tool';
export const tool: ITool = {
name: 'Url parser',
path: '/url-parser',
- description:
- 'Parse an url string to get all the differents parts (protocol, origin, params, port, username-password, ...)',
+ description: 'Parse an url string to get all the different parts (protocol, origin, params, port, username-password, ...)',
keywords: ['url', 'parser', 'protocol', 'origin', 'params', 'port', 'username', 'password', 'href'],
component: () => import('./url-parser.vue'),
icon: Unlink,