oauth2: fix typo

Change-Id: Ic39a63c50a042ab836bbc496db9aea7fb52870d2
Reviewed-on: https://go-review.googlesource.com/1652
Reviewed-by: Burcu Dogan <jbd@google.com>
This commit is contained in:
Johan Euphrosine
2014-12-16 10:06:06 -08:00
committed by Burcu Dogan
parent 1679411e42
commit a360c4ed80

View File

@@ -236,7 +236,7 @@ type contextClientFunc func(Context) (*http.Client, error)
var contextClientFuncs []contextClientFunc
func registerContextClietnFunc(fn contextClientFunc) {
func registerContextClientFunc(fn contextClientFunc) {
contextClientFuncs = append(contextClientFuncs, fn)
}