Merge pull request #864 from ericchiang/spelling

*: fix spelling using github.com/client9/misspell
This commit is contained in:
Eric Chiang
2017-03-20 10:20:16 -07:00
committed by GitHub
7 changed files with 10 additions and 10 deletions

View File

@@ -341,7 +341,7 @@ func (p *provider) HandlePOST(s connector.Scopes, samlResponse string) (ident co
if !ok {
return ident, fmt.Errorf("no attribute with name %q", p.groupsAttr)
}
// TOOD(ericchiang): Do we need to further trim whitespace?
// TODO(ericchiang): Do we need to further trim whitespace?
ident.Groups = strings.Split(groupsStr, p.groupsDelim)
} else {
groups, ok := attributes.all(p.groupsAttr)