Skip to content

Commit 15dce60

Browse files
authored
Merge pull request #475 from codygarver/main
utils: fix typo in error message
2 parents 49aee29 + 91327cc commit 15dce60

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ const toRef = (url: string) => {
5757
const result = patterns.url.first.exec(url);
5858
if (!result) {
5959
console.error(
60-
`Expected to transform url (${url}) to GitHub reference, but it did not match pattern'`,
60+
`Expected to transform url (${url}) to GitHub reference, but it did not match pattern`,
6161
);
6262
return "";
6363
}

0 commit comments

Comments
 (0)