Skip to content

Commit

Permalink
Add missing closing angle bracket in code snippet (#469)
Browse files Browse the repository at this point in the history
  • Loading branch information
mderriey authored Apr 8, 2023
1 parent b68577a commit 9b9484f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ public void ConfigureServices(IServiceCollection services)
services.AddSingleton<IAlgorithmFactory>(new DelegateAlgorithmFactory(algorithm));

// or use the generic version AddJwt<TFactory() to use a custom implementation of IAlgorithmFactory
.AddJwt<MyCustomAlgorithmFactory(options => ...);
.AddJwt<MyCustomAlgorithmFactory>(options => ...);
}

public void Configure(IApplicationBuilder app)
Expand Down

0 comments on commit 9b9484f

Please sign in to comment.