From 535c4495da4945adb9eda20e5b85c85750615496 Mon Sep 17 00:00:00 2001 From: Alexander Shiryaev Date: Thu, 5 May 2022 18:06:50 -0700 Subject: [PATCH] Fix example in authenticators.md Fix parameter order in OAuth2AuthorizationRequestHeaderAuthenticator example in authenticators.md --- docs/authenticators.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/authenticators.md b/docs/authenticators.md index efb77f719..ba0169722 100644 --- a/docs/authenticators.md +++ b/docs/authenticators.md @@ -65,7 +65,7 @@ For example: ```csharp client.Authenticator = new OAuth2AuthorizationRequestHeaderAuthenticator( - "Bearer", token + token, "Bearer" ); ```