oauth2: Context godoc typo fix

Change-Id: I9fbc394a6545754621e808f5d6c4f7622248eaa2
Reviewed-on: https://go-review.googlesource.com/4163
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
This commit is contained in:
Péter Surányi 2015-02-08 19:17:04 +09:00 committed by Brad Fitzpatrick
parent 1406aeefb0
commit b0e7ac8c3a
1 changed files with 2 additions and 2 deletions

View File

@ -25,12 +25,12 @@ import (
"golang.org/x/net/context"
)
// Context can be an golang.org/x/net.Context, or an App Engine Context.
// Context can be an golang.org/x/net/context.Context, or an App Engine Context.
// If you don't care and aren't running on App Engine, you may use NoContext.
type Context interface{}
// NoContext is the default context. If you're not running this code
// on App Engine or not using golang.org/x/net.Context to provide a custom
// on App Engine or not using golang.org/x/net/context.Context to provide a custom
// HTTP client, you should use NoContext.
var NoContext Context = nil