Skip to content

Commit

Permalink
Fixed typo with types in Readme (#220)
Browse files Browse the repository at this point in the history
* Updated README.md
  • Loading branch information
alvinometric authored May 8, 2024
1 parent fc6b570 commit 93f4d88
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ var settings = new UnleashSettings()
{
AppName = "dotnet-test",
UnleashApi = new Uri("<your-api-url>"),
CustomHttpHeaders = new Dictionary()
CustomHttpHeaders = new Dictionary<string, string>()
{
{"Authorization","<your-api-token>" }
}
Expand Down Expand Up @@ -280,7 +280,7 @@ var settings = new UnleashSettings()
AppName = "dotnet-test",
UnleashApi = new Uri("http://unleash.herokuapp.com/api/"),
UnleashContextProvider = new AspNetContextProvider(),
CustomHttpHeaders = new Dictionary()
CustomHttpHeaders = new Dictionary<string, string>()
{
{"Authorization", "API token" }
}
Expand Down Expand Up @@ -458,7 +458,7 @@ var settings = new UnleashSettings()
{
AppName = "dotnet-test",
UnleashApi = new Uri("http://unleash.herokuapp.com/api/"),
CustomHttpHeaders = new Dictionary()
CustomHttpHeaders = new Dictionary<string, string>()
{
{"Authorization","API token" }
},
Expand Down Expand Up @@ -584,4 +584,4 @@ This starts the release workflow which builds the new release and pushes the art

### Other information

- Check out our guide for more information on how to build and scale [feature flag](https://docs.getunleash.io/topics/feature-flags/feature-flag-best-practices) systems
- Check out our guide for more information on how to build and scale [feature flag](https://docs.getunleash.io/topics/feature-flags/feature-flag-best-practices) systems

0 comments on commit 93f4d88

Please sign in to comment.