Skip to content

Commit bfbecf7

Browse files
authored
Fix typo in checkout PR by number input prompt (#3463)
1 parent 247a7a9 commit bfbecf7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/commands.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -920,7 +920,7 @@ export function registerCommands(
920920
}
921921
const prNumberMatcher = /^#?(\d*)$/;
922922
const prNumber = await vscode.window.showInputBox({
923-
ignoreFocusOut: true, prompt: 'Enter the a pull request number',
923+
ignoreFocusOut: true, prompt: 'Enter the pull request number',
924924
validateInput: (input: string) => {
925925
const matches = input.match(prNumberMatcher);
926926
if (!matches || (matches.length !== 2) || Number.isNaN(Number(matches[1]))) {

0 commit comments

Comments
 (0)