Skip to content

Commit d85fc11

Browse files
solonIvanGoncharov
authored andcommitted
Fix minor typos in gen-changelog.js (#2212)
1 parent ed3ef8b commit d85fc11

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

resources/gen-changelog.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ const labelsConfig = {
3838
const GH_TOKEN = process.env['GH_TOKEN'];
3939

4040
if (!GH_TOKEN) {
41-
console.error('Must provide GH_TOKEN as enviroment variable!');
41+
console.error('Must provide GH_TOKEN as environment variable!');
4242
process.exit(1);
4343
}
4444

@@ -51,7 +51,7 @@ const match = /https:\/\/github.com\/([^/]+)\/([^/]+).git/.exec(
5151
packageJSON.repository.url,
5252
);
5353
if (match == null) {
54-
console.error('Can not extract organisation and repo name from repo URL!');
54+
console.error('Cannot extract organisation and repo name from repo URL!');
5555
process.exit(1);
5656
}
5757
const [, githubOrg, githubRepo] = match;

0 commit comments

Comments
 (0)