aboutsummaryrefslogtreecommitdiff
path: root/src/tools/git-memo/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/git-memo/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/git-memo/index.ts')
-rw-r--r--src/tools/git-memo/index.ts5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/tools/git-memo/index.ts b/src/tools/git-memo/index.ts
index 4fff51a..09fcc00 100644
--- a/src/tools/git-memo/index.ts
+++ b/src/tools/git-memo/index.ts
@@ -4,9 +4,8 @@ import type { ITool } from '../Tool';
export const tool: ITool = {
name: 'Git cheatsheet',
path: '/git-memo',
- description:
- 'Git is a decentralized version management sofware. With this cheatsheet you will have a quick acces to the most common git commands.',
- keywords: ['git', 'push', 'force', 'pull', 'commit', 'ammend', 'rebase', 'merge', 'reset', 'soft', 'hard', 'lease'],
+ description: 'Git is a decentralized version management software. With this cheatsheet you will have a quick access to the most common git commands.',
+ keywords: ['git', 'push', 'force', 'pull', 'commit', 'amend', 'rebase', 'merge', 'reset', 'soft', 'hard', 'lease'],
component: () => import('./git-memo.vue'),
icon: BrandGit,
};