diff --git a/README.md b/README.md index 37befb9d1..0f8089ca7 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ $ go get github.com/markbates/goth ## Examples -See the [examples](examples) folder for a working application that let's users authenticate +See the [examples](examples) folder for a working application that lets users authenticate through Twitter, Facebook or Google Plus. ## Issues diff --git a/doc.go b/doc.go index 1c3bc1b9b..d0bec281c 100644 --- a/doc.go +++ b/doc.go @@ -4,7 +4,7 @@ packages for Go web applications. This package was inspired by https://github.com/intridea/omniauth. -See the examples folder for a working application that let's users authenticate +See the examples folder for a working application that lets users authenticate through Twitter or Facebook. */ package goth diff --git a/providers/faux/faux.go b/providers/faux/faux.go index 94cc2ce0c..53016f826 100644 --- a/providers/faux/faux.go +++ b/providers/faux/faux.go @@ -1,4 +1,4 @@ -// Package faux is used exclusive for testing purposes. I would strongly suggest you move along +// Package faux is used exclusively for testing purposes. I would strongly suggest you move along // as there's nothing to see here. package faux diff --git a/session.go b/session.go index 689aed7d3..2d40b50bb 100644 --- a/session.go +++ b/session.go @@ -15,7 +15,7 @@ type Session interface { GetAuthURL() (string, error) // Marshal generates a string representation of the Session for storing between requests. Marshal() string - // Authorize should validate the data from the provider and return back an access token + // Authorize should validate the data from the provider and return an access token // that can be stored for later access to the provider. Authorize(Provider, Params) (string, error) }