aboutsummaryrefslogtreecommitdiff
path: root/vendor/github.com/google/go-github/github/git_blobs.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/google/go-github/github/git_blobs.go')
-rw-r--r--vendor/github.com/google/go-github/github/git_blobs.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/github.com/google/go-github/github/git_blobs.go b/vendor/github.com/google/go-github/github/git_blobs.go
index 55148fd..5a46708 100644
--- a/vendor/github.com/google/go-github/github/git_blobs.go
+++ b/vendor/github.com/google/go-github/github/git_blobs.go
@@ -18,7 +18,7 @@ type Blob struct {
// GetBlob fetchs a blob from a repo given a SHA.
//
-// GitHub API docs: http://developer.github.com/v3/git/blobs/#get-a-blob
+// GitHub API docs: https://developer.github.com/v3/git/blobs/#get-a-blob
func (s *GitService) GetBlob(owner string, repo string, sha string) (*Blob, *Response, error) {
u := fmt.Sprintf("repos/%v/%v/git/blobs/%v", owner, repo, sha)
req, err := s.client.NewRequest("GET", u, nil)