Skip to content

Commit 8e73bed

Browse files
authored
fix(github): prompt case typo (#357)
1 parent 0fdfa9f commit 8e73bed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/github.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ module.exports = async function (info) {
2020
type: 'input',
2121
name: 'token',
2222
message:
23-
'Provide a GItHub Personal Access Token (create a token at https://github.com/settings/tokens/new?scopes=repo)',
23+
'Provide a GitHub Personal Access Token (create a token at https://github.com/settings/tokens/new?scopes=repo)',
2424
default: async () => {
2525
const clipboardValue = await clipboard.read();
2626
return clipboardValue.length === 40 ? clipboardValue : null;

0 commit comments

Comments
 (0)