From b69b8b39dde863f5d1063241cadda29721eddc71 Mon Sep 17 00:00:00 2001 From: mattdenkers Date: Mon, 18 May 2020 15:37:37 -0600 Subject: [PATCH] Use correct class name --- docs/CustomAuthenticationProvider.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/CustomAuthenticationProvider.md b/docs/CustomAuthenticationProvider.md index 625adf944..71a26354e 100644 --- a/docs/CustomAuthenticationProvider.md +++ b/docs/CustomAuthenticationProvider.md @@ -30,7 +30,7 @@ Pass instance of MyAuthenticationProvider while initializing. import { MyAuthenticationProvider } from "./MyAuthenticationProvider"; let clientOptions: ClientOptions = { - authProvider: new MyCustomAuthenticationProvider(), + authProvider: new MyAuthenticationProvider(), }; const client = Client.initWithMiddleware(clientOptions); ```