Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
renames the tuple item of
pr_markdown
to prs
and updates the func…
…tion call accordingly. ```diff diff --git a/src/main.rs b/src/main.rs index 0c68540f374a..a1f3698bb1e3 100644 --- a/src/main.rs +++ b/src/main.rs @@ -21,7 +21,7 @@ fn main() { logger::init(); let args: args = args::parse(); let pull_requests = github_graphql::fetch_pull_requests(&args); - let (pr_markdown, contributors, labels) = github_graphql::get_changelog_info(&pull_requests); - let changelog = templates::create_changelog(&args, &pr_markdown, &contributors, &labels); + let (prs, contributors, labels) = github_graphql::get_changelog_info(&pull_requests); + let changelog = templates::create_changelog(&args, &prs, &contributors, &labels); logger::log_changelog(&changelog); } ```
- Loading branch information