Skip to content

Commit

Permalink
Fix minor typos and spelling errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Hall committed Aug 12, 2015
1 parent 3440a60 commit cd12624
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion doc.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion providers/faux/faux.go
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion session.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}

0 comments on commit cd12624

Please sign in to comment.