From 91369cb2382fd7c07897887e239af8e9b8a0204d Mon Sep 17 00:00:00 2001 From: marvin-j97 <33938500+marvin-j97@users.noreply.github.com> Date: Mon, 27 Mar 2023 17:38:37 +0200 Subject: [PATCH] refactor(html-editor): use correct letter casing (#292) --- src/tools/html-wysiwyg-editor/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/html-wysiwyg-editor/index.ts b/src/tools/html-wysiwyg-editor/index.ts index 985f3c1b..461ad235 100644 --- a/src/tools/html-wysiwyg-editor/index.ts +++ b/src/tools/html-wysiwyg-editor/index.ts @@ -2,7 +2,7 @@ import { Edit } from '@vicons/tabler'; import { defineTool } from '../tool'; export const tool = defineTool({ - name: 'Html wysiwyg editor', + name: 'HTML WYSIWYG editor', path: '/html-wysiwyg-editor', description: 'Online HTML editor with feature-rich WYSIWYG editor, get the source code of the content immediately.', keywords: ['html', 'wysiwyg', 'editor', 'p', 'ul', 'ol', 'converter', 'live'],