From 169089a5806e41fd76f85e7f2f9285ed10820595 Mon Sep 17 00:00:00 2001 From: Kevin Coughlin <706967+KevinTCoughlin@users.noreply.github.com> Date: Tue, 9 Jul 2019 19:21:43 -0700 Subject: [PATCH] Fix syntax error in code sample --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ced52f908..cc7ee95f5 100644 --- a/README.md +++ b/README.md @@ -72,7 +72,7 @@ Refer devDependencies in [package.json](./package.json) for the compatible msal // Configuration options for MSAL @see https://github.com/AzureAD/microsoft-authentication-library-for-js/wiki/MSAL.js-1.0.0-api-release#configuration-options const msalConfig = { auth: { - clientId: "your_client_id"; // Client Id of the registered application + clientId: "your_client_id", // Client Id of the registered application redirectUri: "your_redirect_uri", }, };