From 468b5e3f0a9f30e3c256368788f9a56208465775 Mon Sep 17 00:00:00 2001 From: silenceshell Date: Thu, 10 May 2018 11:55:11 +0800 Subject: [PATCH] fix typo Should `pulic` be `public`? --- connector/github/github.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/connector/github/github.go b/connector/github/github.go index fc578aeb..3ab15282 100644 --- a/connector/github/github.go +++ b/connector/github/github.go @@ -457,7 +457,7 @@ func (c *githubConnector) user(ctx context.Context, client *http.Client) (user, return u, err } - // Only pulic user emails are returned by 'GET /user'. u.Email will be empty + // Only public user emails are returned by 'GET /user'. u.Email will be empty // if a users' email is private. We must retrieve private emails explicitly. if u.Email == "" { var err error