Minor code and comments changes

This commit is contained in:
Quentin McGaw
2020-05-29 00:09:49 +00:00
parent d0926111e0
commit 64e447b262
5 changed files with 73 additions and 73 deletions

View File

@@ -11,7 +11,7 @@ import (
// GetWindscribeRegion obtains the region for the Windscribe server from the
// environment variable REGION
func (p *reader) GetWindscribeRegion() (country models.WindscribeRegion, err error) {
func (p *reader) GetWindscribeRegion() (region models.WindscribeRegion, err error) {
s, err := p.envParams.GetValueIfInside("REGION", constants.WindscribeRegionChoices())
return models.WindscribeRegion(strings.ToLower(s)), err
}