forked from Mirrors/oauth2
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:
parent
1406aeefb0
commit
b0e7ac8c3a
|
@ -25,12 +25,12 @@ import (
|
||||||
"golang.org/x/net/context"
|
"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.
|
// If you don't care and aren't running on App Engine, you may use NoContext.
|
||||||
type Context interface{}
|
type Context interface{}
|
||||||
|
|
||||||
// NoContext is the default context. If you're not running this code
|
// 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.
|
// HTTP client, you should use NoContext.
|
||||||
var NoContext Context = nil
|
var NoContext Context = nil
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue