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