From 86850e07236e6a4f59e810fb16229fdebb07a119 Mon Sep 17 00:00:00 2001 From: thomas-goncalves Date: Fri, 24 Mar 2023 18:40:42 +0000 Subject: [PATCH] oauth2: fix typo Change-Id: I515f8897cc79c58a8a49df84ccddc5acd9536d87 GitHub-Last-Rev: 5acbebb81b641bbc3ec2847cb6ec98033e6ddabe GitHub-Pull-Request: golang/oauth2#616 Reviewed-on: https://go-review.googlesource.com/c/oauth2/+/459695 Run-TryBot: Cody Oss Reviewed-by: Heschi Kreinick Auto-Submit: Dmitri Shuralyov TryBot-Result: Gopher Robot Reviewed-by: Cody Oss Reviewed-by: Matt Hickford --- oauth2.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oauth2.go b/oauth2.go index 291df5c83..de523043c 100644 --- a/oauth2.go +++ b/oauth2.go @@ -140,7 +140,7 @@ func SetAuthURLParam(key, value string) AuthCodeOption { // // State is a token to protect the user from CSRF attacks. You must // always provide a non-empty string and validate that it matches the -// the state query parameter on your redirect callback. +// state query parameter on your redirect callback. // See http://tools.ietf.org/html/rfc6749#section-10.12 for more info. // // Opts may include AccessTypeOnline or AccessTypeOffline, as well