diff --git a/gothic/gothic.go b/gothic/gothic.go index 3a814d9a6..86adf58e9 100644 --- a/gothic/gothic.go +++ b/gothic/gothic.go @@ -59,7 +59,7 @@ as either "provider" or ":provider". BeginAuthHandler will redirect the user to the appropriate authentication end-point for the requested provider. -See https://github.com/markbates/goth/examples/main.go to see this in action. +See https://github.com/markbates/goth/blob/master/examples/main.go to see this in action. */ func BeginAuthHandler(res http.ResponseWriter, req *http.Request) { url, err := GetAuthURL(res, req) @@ -156,7 +156,7 @@ process and fetches all the basic information about the user from the provider. It expects to be able to get the name of the provider from the query parameters as either "provider" or ":provider". -See https://github.com/markbates/goth/examples/main.go to see this in action. +See https://github.com/markbates/goth/blob/master/examples/main.go to see this in action. */ var CompleteUserAuth = func(res http.ResponseWriter, req *http.Request) (goth.User, error) { if !keySet && defaultStore == Store {