From 6815a2609bc7f1babb039c65b3379e2d46cd2874 Mon Sep 17 00:00:00 2001 From: Ben Marvell Date: Mon, 9 Jan 2017 16:22:17 +0000 Subject: [PATCH] Fix typo in docs that actually affects the usage :) --- doc.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc.go b/doc.go index 199d6ae9e..863d9b97a 100644 --- a/doc.go +++ b/doc.go @@ -115,7 +115,7 @@ type Config struct { // ClientID is the client id ClientID string `json:"client-id" yaml:"client-id" usage:"client id used to authenticate to the oauth service" env:"CLIENT_ID"` // ClientSecret is the secret for AS - ClientSecret string `json:"client-secret" yaml:"client-secret" usage:"client secret used to authenticate to the oauth service" env:"CLIENT_SECERT"` + ClientSecret string `json:"client-secret" yaml:"client-secret" usage:"client secret used to authenticate to the oauth service" env:"CLIENT_SECRET"` // RedirectionURL the redirection url RedirectionURL string `json:"redirection-url" yaml:"redirection-url" usage:"redirection url for the oauth callback url" env:"REDIRECTION_URL"` // RevocationEndpoint is the token revocation endpoint to revoke refresh tokens