Browse Source

Fixes typo forcably -> forcibly

main
Andrea Cigana 4 years ago
committed by Eric Amodio
parent
commit
50c44144a0
2 changed files with 3 additions and 3 deletions
  1. +2
    -2
      src/commands/git/branch.ts
  2. +1
    -1
      src/commands/git/tag.ts

+ 2
- 2
src/commands/git/branch.ts View File

@ -385,7 +385,7 @@ export class BranchGitCommand extends QuickCommand {
FlagsQuickPickItem.create<DeleteFlags>(state.flags, ['--force'], { FlagsQuickPickItem.create<DeleteFlags>(state.flags, ['--force'], {
label: `Force ${context.title}`, label: `Force ${context.title}`,
description: '--force', 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' : '' state.references.filter(b => !b.remote).length > 1 ? 's' : ''
}`, }`,
description: '--force --remotes', description: '--force --remotes',
detail: `Will forcably delete ${GitReference.toString(
detail: `Will forcibly delete ${GitReference.toString(
state.references, state.references,
)} and any remote tracking branches`, )} and any remote tracking branches`,
}), }),

+ 1
- 1
src/commands/git/tag.ts View File

@ -312,7 +312,7 @@ export class TagGitCommand extends QuickCommand {
{ {
label: `Force ${context.title}`, label: `Force ${context.title}`,
description: `--force${state.message.length !== 0 ? ' -m' : ''}`, 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, state.reference,
)}`, )}`,
}, },

Loading…
Cancel
Save