From a892f1a7038ec53785df94c5afe2eb1206ea32f8 Mon Sep 17 00:00:00 2001 From: Yann Normand Date: Wed, 13 Jun 2018 21:37:41 +1000 Subject: [PATCH] C# syntax on readme --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index b4fc59c..9b4fb13 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ Potential use cases: Register `JwksFeature` in the `AuthFeature`: -``` +```cs // existing Auth feature using the JwtAuthProvider var authFeature = new AuthFeature(...); @@ -26,7 +26,7 @@ The Discovery document is now accessible at `/openid-config` and the JSON Web ke Register `JwksFeature` in the `AuthFeature`: -``` +```cs // existing Auth feature using the JwtAuthProviderReader var authFeature = new AuthFeature(...); @@ -38,7 +38,7 @@ authFeature.RegisterPlugins.Add(new JwksFeature() { ### Protected ASP.NET Core service -``` +```cs public class StartUp { public void ConfigureServices(IServiceCollection services) { ...