Skip to content

Commit

Permalink
Merge pull request #7661 from Rohlik/patch-1
Browse files Browse the repository at this point in the history
Fix typo in generated URI
  • Loading branch information
sampaiodiego committed Aug 6, 2017
2 parents 5288f02 + 970cc7e commit 8801889
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/changelog.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ var writerOpts = {
// GitHub issue URLs.
commit.subject = commit.subject.replace(/#([0-9]+)/g, function(_, issue) {
issues.push(issue);
return '[#' + issue + '](' + gitUrl + '/issue/' + issue + ')';
return '[#' + issue + '](' + gitUrl + '/issues/' + issue + ')';
});
// GitHub user URLs.
commit.subject = commit.subject.replace(/@([a-zA-Z0-9_]+)/g, '[@$1](https://github.com/$1)');
Expand Down

0 comments on commit 8801889

Please sign in to comment.