From dccec7b5f17234b8219494c2b5b03af034e08c04 Mon Sep 17 00:00:00 2001 From: Andy Lindeman Date: Wed, 30 Nov 2016 21:12:34 -0500 Subject: [PATCH] Adjusts comment style based on feedback --- github/admin.go | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/github/admin.go b/github/admin.go index fccc4c6..44d7a9f 100644 --- a/github/admin.go +++ b/github/admin.go @@ -14,8 +14,7 @@ import "fmt" // GitHub API docs: https://developer.github.com/v3/enterprise/ type AdminService service -// TeamLDAPMapping represents the mapping between a GitHub team and an LDAP -// group. +// TeamLDAPMapping represents the mapping between a GitHub team and an LDAP group. type TeamLDAPMapping struct { ID *int `json:"id,omitempty"` LDAPDN *string `json:"ldap_dn,omitempty"` @@ -34,8 +33,7 @@ func (m TeamLDAPMapping) String() string { return Stringify(m) } -// UserLDAPMapping represents the mapping between a GitHub user and an LDAP -// user. +// UserLDAPMapping represents the mapping between a GitHub user and an LDAP user. type UserLDAPMapping struct { ID *int `json:"id,omitempty"` LDAPDN *string `json:"ldap_dn,omitempty"`