From 5acbebb81b641bbc3ec2847cb6ec98033e6ddabe Mon Sep 17 00:00:00 2001 From: thomas-goncalves Date: Wed, 28 Dec 2022 14:25:05 +0100 Subject: [PATCH] oauth2: fix typo --- oauth2.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oauth2.go b/oauth2.go index 291df5c..de52304 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