From 9caf46cc61d5ac1fe66f1dd655f195cba2c00a86 Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Wed, 1 Apr 2020 13:00:38 +0100 Subject: [PATCH] Apply suggestions from code review Co-Authored-By: Richard van der Hoff <1389908+richvdh@users.noreply.github.com> --- main.go | 2 +- rageshake.sample.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/main.go b/main.go index fd99832..86195cb 100644 --- a/main.go +++ b/main.go @@ -51,7 +51,7 @@ type config struct { // Mappings from app name (as submitted in the API) to github repo for issue reporting. GithubProjectMappings map[string]string `yaml:"github_project_mappings"` - // Mappings from app name (as submitted in the API) to github repo as to which the issues pertain. + // Mappings from app name (as submitted in the API) to github repo to which the issues pertain. // Not needed if the issues are reported to the main repo as github will complete the ambiguous references correctly. AutocompleteProjectMappings map[string]string `yaml:"autocomplete_project_mappings"` diff --git a/rageshake.sample.yaml b/rageshake.sample.yaml index 4d44517..ce49756 100644 --- a/rageshake.sample.yaml +++ b/rageshake.sample.yaml @@ -17,7 +17,7 @@ github_token: secrettoken github_project_mappings: my-app: octocat/HelloWorld -# mappings from app name (as submitted in the API) to github repo as to which the issues pertain. +# mappings from app name (as submitted in the API) to github repo to which the issues pertain. # not needed if the issues are reported to the main repo as github will complete the ambiguous references correctly. autocomplete_project_mappings: my-app: octocat/HelloWorld_src