Skip to content

Commit

Permalink
changelog line
Browse files Browse the repository at this point in the history
  • Loading branch information
TomasVotruba committed Jul 1, 2024
1 parent 23cc4e6 commit 427eb33
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Command/GenerateCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int
$changelogLines = [];

foreach ($commits as $commit) {
$changelogLine = $this->createChangelogLing($commit, $configuration);
$changelogLine = $this->createChangelogLine($commit, $configuration);

// just to show the script is doing something :)
$this->symfonyStyle->writeln($changelogLine);
Expand Down Expand Up @@ -119,7 +119,7 @@ private function createThanks(string|null $thanks): string
return sprintf(', Thanks @%s!', $thanks);
}

private function createChangelogLing(Commit $commit, Configuration $configuration): string
private function createChangelogLine(Commit $commit, Configuration $configuration): string
{
$searchPullRequestsResponse = $this->githubApiCaller->searchPullRequests(
$commit,
Expand Down

0 comments on commit 427eb33

Please sign in to comment.