aboutsummaryrefslogtreecommitdiff
path: root/vendor/github.com/google/go-github/github/users_followers.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/google/go-github/github/users_followers.go')
-rw-r--r--vendor/github.com/google/go-github/github/users_followers.go16
1 files changed, 8 insertions, 8 deletions
diff --git a/vendor/github.com/google/go-github/github/users_followers.go b/vendor/github.com/google/go-github/github/users_followers.go
index 123b1c1..9e81b60 100644
--- a/vendor/github.com/google/go-github/github/users_followers.go
+++ b/vendor/github.com/google/go-github/github/users_followers.go
@@ -7,10 +7,10 @@ package github
import "fmt"
-// ListFollowers lists the followers for a user. Passing the empty string will
+// ListFollowers lists the followers for a user. Passing the empty string will
// fetch followers for the authenticated user.
//
-// GitHub API docs: http://developer.github.com/v3/users/followers/#list-followers-of-a-user
+// GitHub API docs: https://developer.github.com/v3/users/followers/#list-followers-of-a-user
func (s *UsersService) ListFollowers(user string, opt *ListOptions) ([]*User, *Response, error) {
var u string
if user != "" {
@@ -37,10 +37,10 @@ func (s *UsersService) ListFollowers(user string, opt *ListOptions) ([]*User, *R
return users, resp, nil
}
-// ListFollowing lists the people that a user is following. Passing the empty
+// ListFollowing lists the people that a user is following. Passing the empty
// string will list people the authenticated user is following.
//
-// GitHub API docs: http://developer.github.com/v3/users/followers/#list-users-followed-by-another-user
+// GitHub API docs: https://developer.github.com/v3/users/followers/#list-users-followed-by-another-user
func (s *UsersService) ListFollowing(user string, opt *ListOptions) ([]*User, *Response, error) {
var u string
if user != "" {
@@ -67,10 +67,10 @@ func (s *UsersService) ListFollowing(user string, opt *ListOptions) ([]*User, *R
return users, resp, nil
}
-// IsFollowing checks if "user" is following "target". Passing the empty
+// IsFollowing checks if "user" is following "target". Passing the empty
// string for "user" will check if the authenticated user is following "target".
//
-// GitHub API docs: http://developer.github.com/v3/users/followers/#check-if-you-are-following-a-user
+// GitHub API docs: https://developer.github.com/v3/users/followers/#check-if-you-are-following-a-user
func (s *UsersService) IsFollowing(user, target string) (bool, *Response, error) {
var u string
if user != "" {
@@ -91,7 +91,7 @@ func (s *UsersService) IsFollowing(user, target string) (bool, *Response, error)
// Follow will cause the authenticated user to follow the specified user.
//
-// GitHub API docs: http://developer.github.com/v3/users/followers/#follow-a-user
+// GitHub API docs: https://developer.github.com/v3/users/followers/#follow-a-user
func (s *UsersService) Follow(user string) (*Response, error) {
u := fmt.Sprintf("user/following/%v", user)
req, err := s.client.NewRequest("PUT", u, nil)
@@ -104,7 +104,7 @@ func (s *UsersService) Follow(user string) (*Response, error) {
// Unfollow will cause the authenticated user to unfollow the specified user.
//
-// GitHub API docs: http://developer.github.com/v3/users/followers/#unfollow-a-user
+// GitHub API docs: https://developer.github.com/v3/users/followers/#unfollow-a-user
func (s *UsersService) Unfollow(user string) (*Response, error) {
u := fmt.Sprintf("user/following/%v", user)
req, err := s.client.NewRequest("DELETE", u, nil)