We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 247a7a9 commit bfbecf7Copy full SHA for bfbecf7
src/commands.ts
@@ -920,7 +920,7 @@ export function registerCommands(
920
}
921
const prNumberMatcher = /^#?(\d*)$/;
922
const prNumber = await vscode.window.showInputBox({
923
- ignoreFocusOut: true, prompt: 'Enter the a pull request number',
+ ignoreFocusOut: true, prompt: 'Enter the pull request number',
924
validateInput: (input: string) => {
925
const matches = input.match(prNumberMatcher);
926
if (!matches || (matches.length !== 2) || Number.isNaN(Number(matches[1]))) {
0 commit comments