From 265860e993d5dd2eceda18680afc5acc12f36fbe Mon Sep 17 00:00:00 2001 From: Seb <144435+rmtsrc@users.noreply.github.com> Date: Sun, 18 Jun 2023 16:05:40 +0100 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Corentin THOMASSET --- src/tools/percentage-calculator/index.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/tools/percentage-calculator/index.ts b/src/tools/percentage-calculator/index.ts index e9ed5634..736f5706 100644 --- a/src/tools/percentage-calculator/index.ts +++ b/src/tools/percentage-calculator/index.ts @@ -4,8 +4,9 @@ import { defineTool } from '../tool'; export const tool = defineTool({ name: 'Percentage calculator', path: '/percentage-calculator', - description: 'Calculate percentages', - keywords: ['percentage', 'calculator'], + description: 'Easily calculate percentages from a value to another value, or from a percentage to a value.', + keywords: ['percentage', 'calculator', 'calculate', 'value', 'number', '%'], component: () => import('./percentage-calculator.vue'), icon: Percentage, + createdAt: new Date('2023-06-18'), });