Skip to content

Commit b4a7413

Browse files
authored
Update README.md
1 parent 6615201 commit b4a7413

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -111,20 +111,20 @@ app.Run();
111111

112112
## [Parametrized configuration](/src/ParametrizedConfiguration) - for parametrizing configuration values
113113
For example, this configuration described as a json:
114-
```
114+
```json
115115
{
116-
{ "param1", "1+%param2%" },
117-
{ "param2", "2+%param3%" },
118-
{ "param3", "3" }
119-
};
116+
"param1": "1+%param2%",
117+
"param2": "2+%param3%",
118+
"param3": "3"
119+
}
120120
```
121121
will be parametrized into this:
122-
```
122+
```json
123123
{
124-
{ "param1", "1+2+3" },
125-
{ "param2", "2+3" },
126-
{ "param3", "3" }
127-
};
124+
"param1": "1+2+3",
125+
"param2": "2+3",
126+
"param3": "3"
127+
}
128128
```
129129
```csharp
130130
var configuration = new ConfigurationBuilder()

0 commit comments

Comments
 (0)