diff --git a/src/commands/git/branch.ts b/src/commands/git/branch.ts index 9454025..5d9fe98 100644 --- a/src/commands/git/branch.ts +++ b/src/commands/git/branch.ts @@ -385,7 +385,7 @@ export class BranchGitCommand extends QuickCommand { FlagsQuickPickItem.create(state.flags, ['--force'], { label: `Force ${context.title}`, description: '--force', - detail: `Will forcably delete ${GitReference.toString(state.references)}`, + detail: `Will forcibly delete ${GitReference.toString(state.references)}`, }), ); @@ -405,7 +405,7 @@ export class BranchGitCommand extends QuickCommand { state.references.filter(b => !b.remote).length > 1 ? 's' : '' }`, description: '--force --remotes', - detail: `Will forcably delete ${GitReference.toString( + detail: `Will forcibly delete ${GitReference.toString( state.references, )} and any remote tracking branches`, }), diff --git a/src/commands/git/tag.ts b/src/commands/git/tag.ts index 20f4f2e..fbcda37 100644 --- a/src/commands/git/tag.ts +++ b/src/commands/git/tag.ts @@ -312,7 +312,7 @@ export class TagGitCommand extends QuickCommand { { label: `Force ${context.title}`, description: `--force${state.message.length !== 0 ? ' -m' : ''}`, - detail: `Will forcably create a new tag named ${state.name} at ${GitReference.toString( + detail: `Will forcibly create a new tag named ${state.name} at ${GitReference.toString( state.reference, )}`, },